From 8e863828dd04422b600d7dfbf4714454e82cd281 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 08:55:17 +0000 Subject: [PATCH] build(deps): update chacha20poly1305 requirement from 0.10 to 0.11 Updates the requirements on [chacha20poly1305](https://github.com/RustCrypto/AEADs) to permit the latest version. - [Commits](https://github.com/RustCrypto/AEADs/compare/aes-gcm-v0.10.0...chacha20poly1305-v0.11.0) --- updated-dependencies: - dependency-name: chacha20poly1305 dependency-version: 0.11.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- benchmarks/Cargo.toml | 2 +- crates/protocols/hpke/rust_crypto_provider/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 619843490..5ab6f83b3 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -30,7 +30,7 @@ rand_core = { version = "0.10" } rand_core_old = { version = "0.6", package = "rand_core" } # Benchmarking "RustCrypto" -chacha20poly1305 = "0.10" +chacha20poly1305 = "0.11" ed25519-dalek = { version = "3.0.0", features = ["rand_core"] } p256 = { version = "0.13", features = ["ecdh"] } sha2 = "0.11" diff --git a/crates/protocols/hpke/rust_crypto_provider/Cargo.toml b/crates/protocols/hpke/rust_crypto_provider/Cargo.toml index da564208b..cc4614dea 100644 --- a/crates/protocols/hpke/rust_crypto_provider/Cargo.toml +++ b/crates/protocols/hpke/rust_crypto_provider/Cargo.toml @@ -24,7 +24,7 @@ k256 = { version = "0.13", features = [ ], default-features = false } p384 = { version = "0.13", default-features = false, features = ["arithmetic"] } x25519-dalek = { version = "2", features = ["static_secrets"] } -chacha20poly1305 = { version = "0.10", default-features = false, features = [ +chacha20poly1305 = { version = "0.11", default-features = false, features = [ "alloc", ] } aes-gcm = { version = "0.10", default-features = false, features = ["aes"] }