From 36aa5d55d1bfdf1afe5575affa0d7f54d278d415 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 20:04:14 +0000 Subject: [PATCH] chore(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] --- proxy/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index f6b051f9..812741e7 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -39,7 +39,7 @@ sse-stream = "0.2.3" async-stream = "0.3" # Socket dependencies -chacha20poly1305 = { version = "0.10", features = ["stream"], optional = true } +chacha20poly1305 = { version = "0.11", features = ["stream"], optional = true } dashmap = { version = "6.0", optional = true} hyper = { version = "1", default-features = false, optional = true } hyper-util = { version = "0.1", default-features = false, features = ["tokio"], optional = true} diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 9302fd6b..09053248 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -34,7 +34,7 @@ rand = "0.8" rsa = "0.9" sha2 = "0.10" openssl = "0.10" -chacha20poly1305 = "0.10" +chacha20poly1305 = "0.11" itertools = "0.14.0" jwt-simple = "0.11"