Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- name: Install Nix ❄
uses: DeterminateSystems/nix-installer-action@v4

- name: Link Cachix 🔌
uses: cachix/cachix-action@v12
with:
name: '${{ vars.CACHIX_CACHE_NAME }}'
authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}'
# - name: Link Cachix 🔌
# uses: cachix/cachix-action@v12
# with:
# name: '${{ vars.CACHIX_CACHE_NAME }}'
# authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}'

- name: run unit tests 🔨
run: nix build .#checks.x86_64-linux.test --print-build-logs
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/configuration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/mongodb-agent-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/mongodb-connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/mongodb-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
Loading