From 6805db572562ff5357b0882e121b02ec00596f7c Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 28 Jan 2026 07:31:18 -0700 Subject: [PATCH] Bump dependencies Upgrades the following dependency requirements: - `ghash` v0.6.0-rc.4 - `poly1305` v0.9.0-rc.4 - `polyval` v0.7.0-rc.6 --- Cargo.lock | 12 ++++++------ aes-gcm-siv/Cargo.toml | 2 +- aes-gcm/Cargo.toml | 2 +- chacha20poly1305/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 57163dc6..08567aca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -340,9 +340,9 @@ dependencies = [ [[package]] name = "ghash" -version = "0.6.0-rc.3" +version = "0.6.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "333de57ed9494a40df4bbb866752b100819dde0d18f2264c48f5a08a85fe673d" +checksum = "e2450dbd372f0b86224cdb9220351b1d5384e0aa0d29a50defd22b29a12f5e50" dependencies = [ "polyval", ] @@ -475,9 +475,9 @@ dependencies = [ [[package]] name = "poly1305" -version = "0.9.0-rc.3" +version = "0.9.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c0749ae91cfe6e68c77c4d48802d9720ee06aed3f7100a38975fb0962d50bc" +checksum = "b54ecc48420a43ccac4e81088bc994e02ded1381a82564a982940966c3a9bd1c" dependencies = [ "cpufeatures", "universal-hash", @@ -485,9 +485,9 @@ dependencies = [ [[package]] name = "polyval" -version = "0.7.0-rc.4" +version = "0.7.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d5104542958eebb462a4d4b5acbf7756da05448b72fb7d222199bd1eda42a46" +checksum = "d7c26fb288ad859274ad7e33746324ab027f70802d54bfadf07732b93bbe3ef7" dependencies = [ "cpubits", "cpufeatures", diff --git a/aes-gcm-siv/Cargo.toml b/aes-gcm-siv/Cargo.toml index 9b76d882..e91610be 100644 --- a/aes-gcm-siv/Cargo.toml +++ b/aes-gcm-siv/Cargo.toml @@ -21,7 +21,7 @@ aead = { version = "0.6.0-rc.8", default-features = false } aes = { version = "0.9.0-rc.2", optional = true } cipher = "0.5.0-rc.6" ctr = "0.10.0-rc.2" -polyval = { version = "0.7.0-rc.4", default-features = false } +polyval = { version = "0.7.0-rc.6", default-features = false } subtle = { version = "2", default-features = false } zeroize = { version = "1", optional = true, default-features = false } diff --git a/aes-gcm/Cargo.toml b/aes-gcm/Cargo.toml index 8546101a..018be555 100644 --- a/aes-gcm/Cargo.toml +++ b/aes-gcm/Cargo.toml @@ -20,7 +20,7 @@ rust-version = "1.85" aead = { version = "0.6.0-rc.8", default-features = false } cipher = "0.5.0-rc.6" ctr = "0.10.0-rc.2" -ghash = { version = "0.6.0-rc.3", default-features = false } +ghash = { version = "0.6.0-rc.4", default-features = false } subtle = { version = "2", default-features = false } # optional dependencies diff --git a/chacha20poly1305/Cargo.toml b/chacha20poly1305/Cargo.toml index 1bca5089..64f09add 100644 --- a/chacha20poly1305/Cargo.toml +++ b/chacha20poly1305/Cargo.toml @@ -23,7 +23,7 @@ rust-version = "1.85" aead = { version = "0.6.0-rc.8", default-features = false } chacha20 = { version = "0.10.0-rc.9", default-features = false, features = ["xchacha"] } cipher = "0.5.0-rc.6" -poly1305 = "0.9.0-rc.3" +poly1305 = "0.9.0-rc.4" zeroize = { version = "1.8", optional = true, default-features = false } [dev-dependencies]