From 78eb34438da258281dcdc774290b49f374437323 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 10:02:45 +0000 Subject: [PATCH] build(deps): bump poly1305 from 0.9.0-rc.5 to 0.9.0-rc.6 Bumps [poly1305](https://github.com/RustCrypto/universal-hashes) from 0.9.0-rc.5 to 0.9.0-rc.6. - [Commits](https://github.com/RustCrypto/universal-hashes/compare/poly1305-v0.9.0-rc.5...poly1305-v0.9.0-rc.6) --- updated-dependencies: - dependency-name: poly1305 dependency-version: 0.9.0-rc.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- chacha20poly1305/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 97c7596b..3c337048 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -477,11 +477,11 @@ dependencies = [ [[package]] name = "poly1305" -version = "0.9.0-rc.5" +version = "0.9.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "518693a4015fbfd281debf35bcac145ba2e180ae325ec855fdb405be0b2971fb" +checksum = "19feddcbdf17fad33f40041c7f9e768faf19455f32a6d52ba1b8b65ffc7b1cae" dependencies = [ - "cpufeatures 0.2.17", + "cpufeatures 0.3.0", "universal-hash", ] diff --git a/chacha20poly1305/Cargo.toml b/chacha20poly1305/Cargo.toml index 8aa3e504..f005520e 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.5" +poly1305 = "0.9.0-rc.6" zeroize = { version = "1.8", optional = true, default-features = false } [dev-dependencies]