Skip to content

Commit e10a3ba

Browse files
committed
Make dependencies optional and comment back patchable: false
1 parent dd94b48 commit e10a3ba

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ buildvariants:
223223

224224
- name: aws-auth
225225
display_name: "AWS Authentication"
226-
patchable: false
226+
# patchable: false
227227
run_on:
228228
- ubuntu2004-small
229229
expansions:

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dns-resolver = ["dep:hickory-resolver", "dep:hickory-proto"]
4141
cert-key-password = ["dep:pem", "dep:pkcs8"]
4242

4343
# Enable support for MONGODB-AWS authentication.
44-
aws-auth = ["dep:reqwest", "aws-config"]
44+
aws-auth = ["dep:reqwest", "aws-credential-types", "aws-types", "aws-config"]
4545

4646
# Enable support for on-demand Azure KMS credentials.
4747
azure-kms = ["dep:reqwest"]
@@ -121,8 +121,16 @@ webpki-roots = "0.26"
121121
zstd = { version = "0.11.2", optional = true }
122122
macro_magic = "0.5.1"
123123
rustversion = "1.0.20"
124-
aws-credential-types = "1.2.4"
125-
aws-types = "1.3.7"
124+
125+
[dependencies.aws-credential-types]
126+
version = "1.2.4"
127+
optional = true
128+
default-features = false
129+
130+
[dependencies.aws-types]
131+
version = "1.3.7"
132+
optional = true
133+
default-features = false
126134

127135
[dependencies.aws-config]
128136
version = "1"

0 commit comments

Comments
 (0)