Unverified Commit d2a7e919 authored by Nugine's avatar Nugine Committed by GitHub
Browse files

build(deps): upgrade (#455)

* build(deps): upgrade

* build(deps): ignore RUSTSEC-2026-0002
parent 18bc7d6a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -7,4 +7,8 @@
# unmaintained; accepted temporarily due to upstream dependency chain
# (hyper-rustls via aws-smithy). Re-evaluate and remove when aws-* deps
# update or the advisory is resolved upstream.
ignore = ["RUSTSEC-2025-0134"]
# RUSTSEC-2026-0002: Transitive dependency 'lru' has unsound IterMut
# implementation that violates Stacked Borrows; accepted temporarily
# due to upstream dependency chain (aws-sdk-s3). Re-evaluate and remove
# when aws-sdk-s3 updates or the advisory is resolved upstream.
ignore = ["RUSTSEC-2025-0134", "RUSTSEC-2026-0002"]
+375 −561

File changed.

Preview size limit exceeded, changes collapsed.

+10 −0
Original line number Diff line number Diff line
@@ -27,6 +27,16 @@ multiple_crate_versions = "allow"
debug = "line-tables-only"

[workspace.dependencies]
# AWS SDK dependencies
aws-config = { version = "1.8.12", default-features = false }
aws-credential-types = "1.2.11"
aws-sdk-s3 = "1.119.0"
aws-sdk-sts = "1.95.0"
aws-smithy-runtime-api = "1.10.0"
aws-smithy-types = "1.3.6"
aws-smithy-types-convert = "0.60.11"

# Crypto dependencies
hmac = "=0.13.0-rc.3"
md-5 = "=0.11.0-rc.3"
sha1 = "=0.11.0-rc.3"
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ std-next = "0.1.9"
numeric_cast = "0.3.0"
regex = "1.12.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.148", features = ["preserve_order"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
serde_urlencoded = "0.7.1"
s3s-model = { version = "0.13.0-alpha.1", path = "../crates/s3s-model" }
http = "1.4.0"
+4 −4
Original line number Diff line number Diff line
@@ -18,10 +18,10 @@ minio = ["s3s/minio"]

[dependencies]
async-trait = "0.1.89"
aws-sdk-s3 = "1.107.0"
aws-smithy-runtime-api = { version = "1.9.0", features = ["client", "http-1x"] }
aws-smithy-types = { version = "1.3.4", features = ["http-body-1-x"] }
aws-smithy-types-convert = { version = "0.60.10", features = ["convert-time"] }
aws-sdk-s3.workspace = true
aws-smithy-runtime-api = { workspace = true, features = ["client", "http-1x"] }
aws-smithy-types = { workspace = true, features = ["http-body-1-x"] }
aws-smithy-types-convert = { workspace = true, features = ["convert-time"] }
hyper = "1.8.1"
s3s = { version = "0.13.0-alpha.1", path = "../s3s", default-features = false }
std-next = "0.1.9"
Loading