From 3b4a449cc1eb5245952bba632c2e62b7099b5df0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 16:23:03 +0000 Subject: [PATCH] Update chacha20 requirement from ^0.9.1 to ^0.10.0 in /typhoon Updates the requirements on [chacha20](https://github.com/RustCrypto/stream-ciphers) to permit the latest version. - [Commits](https://github.com/RustCrypto/stream-ciphers/commits/chacha20-v0.10.0) --- updated-dependencies: - dependency-name: chacha20 dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- typhoon/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typhoon/Cargo.toml b/typhoon/Cargo.toml index 3f92234..30a78f1 100644 --- a/typhoon/Cargo.toml +++ b/typhoon/Cargo.toml @@ -33,7 +33,7 @@ blake3 = "^1.8.3" cfg-if = "^1.0.4" crossbeam = "^0.8.4" ctr = { version = "^0.9.2", optional = true } -chacha20 = { version = "^0.9.1", optional = true } +chacha20 = { version = "^0.10.0", optional = true } chacha20poly1305 = { version = "^0.10.1", features = ["std"], optional = true } classic-mceliece-rust = { version = "^3.1.0", features = ["mceliece348864"] } constant_time_eq = "^0.4.2"