diff --git a/foxhunt-deploy/Cargo.toml b/foxhunt-deploy/Cargo.toml index 90446a35a..6f46d27fa 100644 --- a/foxhunt-deploy/Cargo.toml +++ b/foxhunt-deploy/Cargo.toml @@ -17,7 +17,7 @@ categories.workspace = true clap = { version = "4.5", features = ["derive", "env", "color"] } # Async Runtime -tokio = { version = "1.40", features = ["full"] } +tokio = { workspace = true } # HTTP Client reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } diff --git a/ml-data/Cargo.toml b/ml-data/Cargo.toml index df7bf657d..f33dc7f11 100644 --- a/ml-data/Cargo.toml +++ b/ml-data/Cargo.toml @@ -9,7 +9,7 @@ database = { path = "../database" } sqlx = { workspace = true } # Async runtime and concurrency -tokio = { version = "1.0", features = ["full"] } +tokio = { workspace = true } futures = "0.3" # Serialization and data handling diff --git a/services/api_gateway/load_tests/Cargo.toml b/services/api_gateway/load_tests/Cargo.toml index 948475ff3..de8d76a78 100644 --- a/services/api_gateway/load_tests/Cargo.toml +++ b/services/api_gateway/load_tests/Cargo.toml @@ -9,7 +9,7 @@ path = "src/main.rs" [dependencies] # Core async runtime -tokio = { version = "1.42", features = ["full"] } +tokio = { workspace = true } tokio-stream = "0.1" futures = "0.3" diff --git a/services/load_tests/Cargo.toml b/services/load_tests/Cargo.toml index 57261a013..2eebd1618 100644 --- a/services/load_tests/Cargo.toml +++ b/services/load_tests/Cargo.toml @@ -20,7 +20,7 @@ path = "src/main.rs" [dependencies] # Core async runtime -tokio = { workspace = true, features = ["full", "test-util"] } +tokio = { workspace = true } tokio-stream.workspace = true futures.workspace = true diff --git a/tests/e2e/Cargo.toml b/tests/e2e/Cargo.toml index 077611bc8..681bfb10a 100644 --- a/tests/e2e/Cargo.toml +++ b/tests/e2e/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] # Core async runtime -tokio = { version = "1.0", features = ["full"] } +tokio = { workspace = true } tokio-test = "0.4" tokio-stream = "0.1"