Skip to content

Commit 8c4d186

Browse files
author
Zelda Hessler
authored
Update dependencies flagged by cargo audit (#2753)
Also, sort `Cargo.toml` dependencies if they were disordered. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent 11cf41d commit 8c4d186

File tree

27 files changed

+67
-54
lines changed

27 files changed

+67
-54
lines changed

.cargo-deny-config.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,20 @@ name = "ring"
3535
expression = "MIT AND ISC AND OpenSSL"
3636
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
3737

38+
[[licenses.clarify]]
39+
name = "webpki"
40+
expression = "ISC"
41+
license-files = [
42+
{ path = "LICENSE", hash = 0x001c7e6c },
43+
]
44+
45+
[[licenses.clarify]]
46+
name = "rustls-webpki"
47+
expression = "ISC"
48+
license-files = [
49+
{ path = "LICENSE", hash = 0x001c7e6c },
50+
]
51+
3852
# This section is considered when running `cargo deny check bans`.
3953
# More documentation about the 'bans' section can be found here:
4054
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html

aws/rust-runtime/aws-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ aws-smithy-http-tower = { path = "../../sdk/build/aws-sdk/sdk/aws-smithy-http-to
2929
aws-smithy-json = { path = "../../sdk/build/aws-sdk/sdk/aws-smithy-json" }
3030
aws-smithy-types = { path = "../../sdk/build/aws-sdk/sdk/aws-smithy-types" }
3131
aws-types = { path = "../../sdk/build/aws-sdk/sdk/aws-types" }
32-
hyper = { version = "0.14.25", default-features = false }
32+
hyper = { version = "0.14.26", default-features = false }
3333
time = { version = "0.3.4", features = ["parsing"] }
3434
tokio = { version = "1.13.1", features = ["sync"] }
3535
tracing = { version = "0.1" }
@@ -65,7 +65,7 @@ aws-credential-types = { path = "../../sdk/build/aws-sdk/sdk/aws-credential-type
6565
aws-smithy-client = { path = "../../sdk/build/aws-sdk/sdk/aws-smithy-client", features = ["test-util"] }
6666

6767
# used for a usage example
68-
hyper-rustls = { version = "0.23.0", features = ["webpki-tokio", "http2", "http1"] }
68+
hyper-rustls = { version = "0.24", features = ["webpki-tokio", "http2", "http1"] }
6969

7070
[package.metadata.docs.rs]
7171
all-features = true

aws/rust-runtime/aws-credential-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async-trait = "0.1.51"
2727
env_logger = "0.9.0"
2828

2929
tokio = { version = "1.23.1", features = ["full", "test-util", "rt"] }
30-
tracing-test = "0.2.1"
30+
tracing-test = "0.2.4"
3131
# TODO(https://github.com/awslabs/smithy-rs/issues/2619): Remove this
3232
# workaround once the fixed is upstreamed.
3333
regex = { version = "1.0", features = ["unicode-case", "unicode-perl"] }

aws/rust-runtime/aws-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ aws-smithy-protocol-test = { path = "../../../rust-runtime/aws-smithy-protocol-t
2929
bytes-utils = "0.1.2"
3030
env_logger = "0.9"
3131
tokio = { version = "1.23.1", features = ["macros", "rt", "rt-multi-thread", "test-util", "time"] }
32-
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
33-
proptest = "1"
32+
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
33+
proptest = "1.2"
3434
serde = { version = "1", features = ["derive"]}
3535
serde_json = "1"
3636

aws/rust-runtime/aws-inlineable/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ aws-credential-types = { path = "../aws-credential-types", features = ["test-uti
4343
aws-smithy-client = { path = "../../../rust-runtime/aws-smithy-client", features = ["test-util"] }
4444
aws-smithy-http = { path = "../../../rust-runtime/aws-smithy-http", features = ["rt-tokio"] }
4545
aws-smithy-runtime = { path = "../../../rust-runtime/aws-smithy-runtime" }
46-
tempfile = "3.2.0"
47-
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
46+
tempfile = "3.6.0"
47+
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
4848
aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async", features = ["test-util"] }
4949

5050
[package.metadata.docs.rs]

aws/rust-runtime/aws-runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async", features =
3333
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types", features = ["test-util"] }
3434
aws-smithy-protocol-test = { path = "../../../rust-runtime/aws-smithy-protocol-test" }
3535
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["test-util"] }
36-
proptest = "1"
36+
proptest = "1.2"
3737
serde = { version = "1", features = ["derive"]}
3838
serde_json = "1"
39-
tracing-test = "0.2.1"
39+
tracing-test = "0.2.4"
4040

4141
[package.metadata.docs.rs]
4242
all-features = true

aws/rust-runtime/aws-sig-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tracing = "0.1"
2424
aws-credential-types = { path = "../aws-credential-types", features = ["test-util"] }
2525
aws-endpoint = { path = "../aws-endpoint" }
2626
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
27-
tracing-test = "0.2.1"
27+
tracing-test = "0.2.4"
2828
aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async", features = ["test-util"] }
2929

3030
[package.metadata.docs.rs]

aws/rust-runtime/aws-sigv4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ criterion = "0.4"
3333
bytes = "1"
3434
httparse = "1.5"
3535
pretty_assertions = "1.3"
36-
proptest = "1"
36+
proptest = "1.2"
3737
time = { version = "0.3.4", features = ["parsing"] }
3838

3939
[target.'cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))'.dev-dependencies]

aws/rust-runtime/aws-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ http = "0.2.6"
2222
# cargo does not support optional test dependencies, so to completely disable rustls
2323
# we need to add the webpki-roots feature here.
2424
# https://github.com/rust-lang/cargo/issues/1596
25-
hyper-rustls = { version = "0.23.0", optional = true, features = ["rustls-native-certs", "http2", "webpki-roots"] }
25+
hyper-rustls = { version = "0.24", optional = true, features = ["rustls-native-certs", "http2", "webpki-roots"] }
2626

2727
[dev-dependencies]
2828
futures-util = { version = "0.3.16", default-features = false }
2929
http = "0.2.4"
30-
tracing-test = "0.2.1"
30+
tracing-test = "0.2.4"
3131

3232
[build-dependencies]
3333
rustc_version = "0.4.0"

aws/sdk/integration-tests/s3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ futures-util = { version = "0.3.16", default-features = false }
3030
hdrhistogram = "7.5.2"
3131
http = "0.2.3"
3232
http-body = "0.4.5"
33-
hyper = "0.14.25"
33+
hyper = "0.14.26"
3434
pretty_assertions = "1.3"
3535
serde_json = "1"
3636
smol = "1.2"

0 commit comments

Comments
 (0)