From 396978bdb042b8954e299ae3cd409cf330a79293 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 5 Nov 2025 08:29:49 -0700 Subject: [PATCH] digest v0.11.0-rc.4 --- Cargo.lock | 2 +- crypto/Cargo.toml | 6 +++--- digest/Cargo.toml | 2 +- elliptic-curve/Cargo.toml | 2 +- signature/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a694c385..cda86f455 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -169,7 +169,7 @@ dependencies = [ [[package]] name = "digest" -version = "0.11.0-rc.3" +version = "0.11.0-rc.4" dependencies = [ "blobby", "block-buffer", diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 9c0826333..54b0c55b3 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -16,9 +16,9 @@ description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `ciph crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common", default-features = false } # optional dependencies -aead = { version = "0.6.0-rc.0", path = "../aead", optional = true } -cipher = { version = "0.5.0-rc.0", path = "../cipher", optional = true } -digest = { version = "0.11.0-rc.0", path = "../digest", optional = true, features = ["mac"] } +aead = { version = "0.6.0-rc.3", path = "../aead", optional = true } +cipher = { version = "0.5.0-rc.2", path = "../cipher", optional = true } +digest = { version = "0.11.0-rc.4", path = "../digest", optional = true, features = ["mac"] } elliptic-curve = { version = "0.14.0-rc.2", path = "../elliptic-curve", optional = true } password-hash = { version = "0.6.0-rc.0", path = "../password-hash", optional = true } signature = { version = "3.0.0-rc.0", path = "../signature", optional = true, default-features = false } diff --git a/digest/Cargo.toml b/digest/Cargo.toml index e24e3c7eb..aa6c0caeb 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "digest" -version = "0.11.0-rc.3" +version = "0.11.0-rc.4" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 52778d7ef..288363478 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -25,7 +25,7 @@ subtle = { version = "2.6", default-features = false } zeroize = { version = "1.7", default-features = false } # optional dependencies -digest = { version = "0.11.0-rc.3", optional = true } +digest = { version = "0.11.0-rc.4", optional = true } ff = { version = "=0.14.0-pre.0", optional = true, default-features = false } group = { version = "=0.14.0-pre.0", optional = true, default-features = false } hkdf = { version = "0.13.0-rc.1", optional = true, default-features = false } diff --git a/signature/Cargo.toml b/signature/Cargo.toml index c3c4a2b7d..ab485a6dc 100644 --- a/signature/Cargo.toml +++ b/signature/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)" [dependencies] -digest = { version = "0.11.0-rc.1", optional = true, default-features = false } +digest = { version = "0.11.0-rc.4", optional = true, default-features = false } rand_core = { version = "0.10.0-rc-2", optional = true, default-features = false } [features]