Skip to content

Commit 6412c52

Browse files
authored
fix cargo audit warning (#128)
1 parent 4050869 commit 6412c52

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "init4-bin-base"
33

44
description = "Internal utilities for binaries produced by the init4 team"
55
keywords = ["init4", "bin", "base"]
6-
version = "0.18.0-rc.12"
6+
version = "0.18.0-rc.13"
77
edition = "2021"
88
rust-version = "1.85"
99
authors = ["init4", "James Prestwich", "evalir"]
@@ -55,8 +55,10 @@ tower = "0.5.2"
5555
async-trait = { version = "0.1.80", optional = true }
5656

5757
# AWS
58-
aws-config = { version = "1.1.7", optional = true }
59-
aws-sdk-kms = { version = "1.15.0", optional = true }
58+
# Use `default-https-client` rather than the defaulted `rustls` feature to avoid legacy versions of
59+
# the `hyper` and `rustls` dependencies.
60+
aws-config = { version = "1.1.7", optional = true, default-features = false, features = ["default-https-client", "rt-tokio"] }
61+
aws-sdk-kms = { version = "1.15.0", optional = true, default-features = false, features = ["default-https-client", "rt-tokio"] }
6062
futures-util = { version = "0.3", optional = true }
6163
reqwest = { version = "0.12.15", optional = true }
6264
rustls = { version = "0.23.31", optional = true }

0 commit comments

Comments
 (0)