From 18b538b525c5f66d5510153d0c329a09e333edba Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 26 Feb 2026 10:58:15 -0700 Subject: [PATCH] sha3 v0.11.0-rc.8 Includes `digest` v0.11.1 compatibility. Also bumps `keccak` to v0.2.0-rc.2. --- Cargo.lock | 7 ++++--- Cargo.toml | 2 -- sha3/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ade81c8f..61d8b0c17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -201,8 +201,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.2.0-rc.1" -source = "git+https://github.com/RustCrypto/sponges#38d10d219450dae3c2d4506f7b2ce13e6eb32f63" +version = "0.2.0-rc.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "882b69cb15b1f78b51342322a97ccd16f5123d1dc8a3da981a95244f488e8692" dependencies = [ "cpufeatures", ] @@ -313,7 +314,7 @@ dependencies = [ [[package]] name = "sha3" -version = "0.11.0-rc.7" +version = "0.11.0-rc.8" dependencies = [ "digest", "hex-literal", diff --git a/Cargo.toml b/Cargo.toml index e8ee1fca7..2c7653ae8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,5 +34,3 @@ opt-level = 2 sha1 = { path = "sha1" } sha3 = { path = "sha3" } whirlpool = { path = "whirlpool" } - -keccak = { git = "https://github.com/RustCrypto/sponges" } diff --git a/sha3/Cargo.toml b/sha3/Cargo.toml index ffed73131..afd3ceb44 100644 --- a/sha3/Cargo.toml +++ b/sha3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha3" -version = "0.11.0-rc.7" +version = "0.11.0-rc.8" description = """ Pure Rust implementation of SHA-3, a family of Keccak-based hash functions including the SHAKE family of eXtendable-Output Functions (XOFs), as well as @@ -18,7 +18,7 @@ categories = ["cryptography", "no-std"] [dependencies] digest = "0.11" -keccak = "0.2.0-rc.1" +keccak = "0.2.0-rc.2" [dev-dependencies] digest = { version = "0.11", features = ["dev"] }