From 485836778a72c3daf8544eb6ae59d6b9a08c221e Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 25 Aug 2024 21:44:24 +0200 Subject: [PATCH] Added rand dependency --- app/MindWork AI Studio/Pages/About.razor | 1 + runtime/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/app/MindWork AI Studio/Pages/About.razor b/app/MindWork AI Studio/Pages/About.razor index ec900066..2729920a 100644 --- a/app/MindWork AI Studio/Pages/About.razor +++ b/app/MindWork AI Studio/Pages/About.razor @@ -47,6 +47,7 @@ + diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index a39321a7..385ebb23 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -20,6 +20,8 @@ flexi_logger = "0.28" log = "0.4" once_cell = "1.19.0" rocket = { version = "0.5", default-features = false, features = ["json"] } +rand = "0.8" +rand_chacha = "0.3.1" [target.'cfg(target_os = "linux")'.dependencies] # See issue https://github.com/tauri-apps/tauri/issues/4470