diff options
| author | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-04 17:17:10 +0200 |
|---|---|---|
| committer | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-04 17:17:10 +0200 |
| commit | c7ecec3f7e64bfbc8dc0231d538599716e1ccf88 (patch) | |
| tree | b1c9ba512bb5d6df532417bafa66b824f5248773 /rust/Cargo.toml | |
| parent | 47533afd36990b486f1a5d66851f886510c04c20 (diff) | |
| download | lambda-nantes-c7ecec3f7e64bfbc8dc0231d538599716e1ccf88.tar.gz | |
Spawn thread to start sending requests to clients
Diffstat (limited to 'rust/Cargo.toml')
| -rw-r--r-- | rust/Cargo.toml | 13 |
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" |
