diff --git a/Cargo.lock b/Cargo.lock index 9250d52..67b0d67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1844,6 +1844,7 @@ version = "0.2.0" dependencies = [ "anyhow", "clap", + "futures", "instrumentation", "progenitor", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index 6cf8849..ca5b5c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,6 +32,7 @@ clap = { version = "4.5.23", features = [ "string", ] } dropshot = "0.15.1" +futures = "0.3" http = "1.2.0" once_cell = "1.20.2" progenitor = "0.8.0" diff --git a/agent/Cargo.toml b/agent/Cargo.toml index 38023c0..2305f9f 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -7,6 +7,7 @@ version.workspace = true [dependencies] anyhow.workspace = true clap.workspace = true +futures.workspace = true instrumentation = { path = "../instrumentation" } progenitor.workspace = true reqwest.workspace = true