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
8 changes: 4 additions & 4 deletions integ/failure-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = "0.6"
axum = "0.8"
anyhow = "1"
noxious-client = "1"
rand = "0.8"
rand = "0.9"
serde_json = "1"
tempfile = "3"
tokio = "1"
tokio-retry = "0.3"
tower = { version = "0.4", features = ["util"] }
tower = { version = "0.5", features = ["util"] }
tower-fault = "0.0.5"
tower-http = { version = "0.4", features = ["fs"] }
tower-http = { version = "0.6", features = ["fs"] }
4 changes: 2 additions & 2 deletions tough-kms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ tough = { version = "0.19", path = "../tough", features = ["http"] }
aws-lc-rs = "1"
aws-sdk-kms = "1"
aws-config = { version = "1", default-features = false, features = ["credentials-process"] }
aws-smithy-experimental = { version = "0.1", features = ["crypto-aws-lc"] }
aws-smithy-experimental = { version = "0.2", features = ["crypto-aws-lc"] }
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }
tokio = { version = "1", features = ["fs", "io-util", "time", "macros", "rt-multi-thread"] }
pem = "3"

[dev-dependencies]
aws-smithy-runtime = { version = "1", features = ["test-util"] }
aws-smithy-http = "0.60"
aws-smithy-http = "0.62"
aws-smithy-types = "1"
base64 = "0.22"
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion tough-ssm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ fips = ["tough/fips"]
tough = { version = "0.19", path = "../tough", features = ["http"] }
aws-sdk-ssm = "1"
aws-config = { version = "1", default-features = false, features = ["credentials-process"] }
aws-smithy-experimental = { version = "0.1", features = ["crypto-aws-lc"] }
aws-smithy-experimental = { version = "0.2", features = ["crypto-aws-lc"] }
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }
tokio = { version = "1", features = ["fs", "io-util", "time", "macros", "rt-multi-thread"] }
6 changes: 3 additions & 3 deletions tough/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ snafu = { version = "0.8", features = ["futures"] }
tempfile = "3"
tokio = { version = "1", default-features = false, features = ["io-util", "sync", "fs", "rt", "time"] }
tokio-util = { version = "0.7", features = ["io"] }
typed-path = "0.9"
typed-path = "0.12"
# pinned due to aws-lc-rs locked to this version
# https://github.com/aws/aws-lc-rs/issues/468
untrusted = "0.7.1"
untrusted = "0.9.0"
url = "2"
walkdir = "2"
itertools = "0.13.0"
itertools = "0.14.0"
indexmap = { version = "2.5.0", features = ["serde"] }

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions tuftool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ serde_json = "1"
serial_test = "3.1.1"
simplelog = "0.12"

sigstore_protobuf_specs = { version = "0.4", default-features = false, optional = true }
sigstore_protobuf_specs = { version = "0.5", default-features = false, optional = true }

snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }
sha2 = "0.9"
sha2 = "0.10"
pem = "3.0.4"
prost-types = "0.13.5"
prost-types = "0.14.0"
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
tough = { version = "0.19", path = "../tough", features = ["http"] }
Expand All @@ -60,13 +60,13 @@ url = "2"
walkdir = "2"
indexmap = { version = "2.5.0", features = ["serde"] }

rustls-webpki = { version = "0.102.1", features = ["alloc"] }
rustls-webpki = { version = "0.103.0", features = ["alloc"] }
thiserror = "1.0.30"
base64 = { version = "0.22", default-features = false, features = ["std"] }
futures-util = { version = "0.3.30", optional = true }
tokio-util = { version = "0.7.10", features = ["io-util"] }
tracing = "0.1.31"
rstest = "0.22.0"
rstest = "0.26.0"
regex = { version = "1.5.5", optional = true }
pki-types = { package = "rustls-pki-types", version = "1.12", default-features = false }

Expand Down
Loading