From c7ecec3f7e64bfbc8dc0231d538599716e1ccf88 Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Fri, 4 Oct 2024 17:17:10 +0200 Subject: Spawn thread to start sending requests to clients --- rust/Cargo.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'rust/Cargo.toml') 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" -- cgit v1.2.3