From df423763243f95d3a48a5a599b58ecf60e71f46f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 25 Mar 2026 13:47:18 -0600 Subject: [PATCH] dhkem: bump `sha2` to v0.11 Release PR: RustCrypto/hashes#806 --- Cargo.lock | 6 +++--- dhkem/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 929b841..634e42e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1320,12 +1320,12 @@ dependencies = [ [[package]] name = "sha2" -version = "0.11.0-rc.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c5f3b1e2dc8aad28310d8410bd4d7e180eca65fca176c52ab00d364475d0024" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" dependencies = [ "cfg-if", - "cpufeatures 0.2.17", + "cpufeatures 0.3.0", "digest", ] diff --git a/dhkem/Cargo.toml b/dhkem/Cargo.toml index 942f4c3..173c334 100644 --- a/dhkem/Cargo.toml +++ b/dhkem/Cargo.toml @@ -31,7 +31,7 @@ zeroize = { version = "1.8.1", optional = true, default-features = false } getrandom = { version = "0.4", features = ["sys_rng"] } hex-literal = "1" hkdf = "0.13.0-rc.5" -sha2 = "0.11.0-rc.5" +sha2 = "0.11" [features] default = ["zeroize"]