From 56f33f7cf374bdf16441eccd5e3a8b6a048f7692 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 9 Mar 2026 18:58:49 -0600 Subject: [PATCH] Bump `digest` dependency to v0.11 Release PR: RustCrypto/traits#2300 --- balloon-hash/Cargo.toml | 2 +- pbkdf2/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/balloon-hash/Cargo.toml b/balloon-hash/Cargo.toml index a1f26155..186b1020 100644 --- a/balloon-hash/Cargo.toml +++ b/balloon-hash/Cargo.toml @@ -14,7 +14,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -digest = { version = "0.11.0-rc.11", default-features = false } +digest = { version = "0.11", default-features = false } crypto-bigint = { version = "0.7.0-rc.25", default-features = false, features = ["hybrid-array"] } # optional dependencies diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index 5a8a0d3b..d3bcb342 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -14,7 +14,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -digest = { version = "0.11.0-rc.4", features = ["mac"] } +digest = { version = "0.11", features = ["mac"] } # optional dependencies hmac = { version = "0.13.0-rc.5", optional = true, default-features = false }