diff options
| author | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-05 10:41:55 +0200 |
|---|---|---|
| committer | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-05 10:41:55 +0200 |
| commit | 22a53ab297447c2f044d01bf443f7b140745762f (patch) | |
| tree | e959a60c2a855dadfa3b653b2e3cd18c1b383ef1 /rust/Cargo.toml | |
| parent | c7ecec3f7e64bfbc8dc0231d538599716e1ccf88 (diff) | |
| download | lambda-nantes-22a53ab297447c2f044d01bf443f7b140745762f.tar.gz | |
Basic loop to send requests to registered clients
Diffstat (limited to 'rust/Cargo.toml')
| -rw-r--r-- | rust/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 8e75422..7635eae 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -13,6 +13,8 @@ env_logger = "0.8" log = "0.4" futures = "0.3.30" async-std = "1.13.0" +reqwest = "0.12.8" +tokio = { version = "1.40.0", features = ["rt", "macros", "rt-multi-thread"]} [dependencies.uuid] version = "1.10.0" @@ -31,7 +33,7 @@ name = "lambda" path = "src/lib.rs" [[bin]] -name = "lambda" +name = "eval" path = "src/main.rs" [[bin]] |
