From 4f1f5e1fd98cf8d41caeaf5993155b4fe3a50a36 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 10 May 2026 12:09:53 -0600 Subject: [PATCH] chacha20poly1305: bump `poly1305` dependency to v0.9 Release PR: RustCrypto/universal-hashes#333 --- Cargo.lock | 4 ++-- chacha20poly1305/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 300213d0..aa3cc1ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -483,9 +483,9 @@ dependencies = [ [[package]] name = "poly1305" -version = "0.9.0-rc.6" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19feddcbdf17fad33f40041c7f9e768faf19455f32a6d52ba1b8b65ffc7b1cae" +checksum = "a00baa632505d05512f48a963e16051c54fda9a95cc9acea1a4e3c90991c4a2e" dependencies = [ "cpufeatures", "universal-hash", diff --git a/chacha20poly1305/Cargo.toml b/chacha20poly1305/Cargo.toml index f005520e..56e529fe 100644 --- a/chacha20poly1305/Cargo.toml +++ b/chacha20poly1305/Cargo.toml @@ -23,7 +23,7 @@ rust-version = "1.85" aead = { version = "0.6.0-rc.10", default-features = false } chacha20 = { version = "0.10", default-features = false, features = ["xchacha"] } cipher = "0.5" -poly1305 = "0.9.0-rc.6" +poly1305 = "0.9" zeroize = { version = "1.8", optional = true, default-features = false } [dev-dependencies]