diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 3cefa6ab..8abac11e 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -10,7 +10,7 @@ native-query-subcommand = ["dep:pretty", "dep:nom", "dep:textwrap"] [dependencies] configuration = { path = "../configuration" } mongodb-agent-common = { path = "../mongodb-agent-common" } -mongodb = { workspace = true } +mongodb = { workspace = true, features = ["tokio-runtime", "aws-auth"] } mongodb-support = { path = "../mongodb-support" } anyhow = "1.0.80" diff --git a/crates/configuration/Cargo.toml b/crates/configuration/Cargo.toml index 8c3aa88e..7e0caeca 100644 --- a/crates/configuration/Cargo.toml +++ b/crates/configuration/Cargo.toml @@ -10,7 +10,7 @@ ndc-query-plan = { path = "../ndc-query-plan" } anyhow = "1" futures = "^0.3" itertools = { workspace = true } -mongodb = { workspace = true } +mongodb = { workspace = true, features = ["tokio-runtime", "aws-auth"] } ndc-models = { workspace = true } ref-cast = { workspace = true } schemars = { workspace = true } diff --git a/crates/mongodb-agent-common/Cargo.toml b/crates/mongodb-agent-common/Cargo.toml index 639d00ef..3c5f9fec 100644 --- a/crates/mongodb-agent-common/Cargo.toml +++ b/crates/mongodb-agent-common/Cargo.toml @@ -26,7 +26,7 @@ indent = "^0.1" itertools = { workspace = true } lazy_static = "^1.4.0" mockall = { version = "^0.13.1", optional = true } -mongodb = { workspace = true } +mongodb = { workspace = true, features = ["tokio-runtime", "aws-auth"] } ndc-models = { workspace = true } nonempty = { workspace = true } once_cell = "1" diff --git a/crates/mongodb-connector/Cargo.toml b/crates/mongodb-connector/Cargo.toml index 26c0ec6e..6ccf7ff6 100644 --- a/crates/mongodb-connector/Cargo.toml +++ b/crates/mongodb-connector/Cargo.toml @@ -16,7 +16,7 @@ futures = "^0.3" http = "^0.2" indexmap = { workspace = true } itertools = { workspace = true } -mongodb = { workspace = true } +mongodb = { workspace = true, features = ["tokio-runtime", "aws-auth"] } ndc-sdk = { workspace = true } prometheus = "*" # share version from ndc-sdk serde = { workspace = true } diff --git a/crates/mongodb-support/Cargo.toml b/crates/mongodb-support/Cargo.toml index d8ea8c91..09ddde24 100644 --- a/crates/mongodb-support/Cargo.toml +++ b/crates/mongodb-support/Cargo.toml @@ -7,7 +7,7 @@ version.workspace = true anyhow = "1" enum-iterator = "^2.0.0" indexmap = { workspace = true } -mongodb = { workspace = true } +mongodb = { workspace = true, features = ["tokio-runtime", "aws-auth"] } schemars = "^0.8.12" serde = { workspace = true } serde_json = { workspace = true }