summaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml13
1 files changed, 12 insertions, 1 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 4deb7ec..8e75422 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -8,9 +8,20 @@ rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
chrono = { version= "0.4.38", features = ["serde"]}
serde_json = "1.0.128"
-actix-web = "4"
+actix-web = "4.9.0"
env_logger = "0.8"
log = "0.4"
+futures = "0.3.30"
+async-std = "1.13.0"
+
+[dependencies.uuid]
+version = "1.10.0"
+features = [
+ "v4", # Lets you generate random UUIDs
+ "fast-rng", # Use a faster (but still sufficiently random) RNG
+ "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
+ "serde"
+]
[dev-dependencies]
proptest = "1.0.0"