From 67b11a186638fe2dbfdf5d6b8b369a0fc8b89e96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 00:40:20 +0000 Subject: [PATCH] build(deps): bump ml-kem from 0.3.0-rc.1 to 0.3.0-rc.2 Bumps [ml-kem](https://github.com/RustCrypto/KEMs) from 0.3.0-rc.1 to 0.3.0-rc.2. - [Commits](https://github.com/RustCrypto/KEMs/compare/ml-kem/v0.3.0-rc.1...ml-kem/v0.3.0-rc.2) --- updated-dependencies: - dependency-name: ml-kem dependency-version: 0.3.0-rc.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crypto_core/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52e7a62..5601625 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1375,9 +1375,9 @@ dependencies = [ [[package]] name = "ml-kem" -version = "0.3.0-rc.1" +version = "0.3.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8198b5db27ac9773534c371751a59dc18aec8b80aa141e69abfdd1dec2e3f78c" +checksum = "04437cb1a66c0b78740927b76cc61f218344b9f6ef3dd430e283274a718ef0e9" dependencies = [ "hybrid-array", "kem", @@ -2311,9 +2311,9 @@ dependencies = [ [[package]] name = "sha3" -version = "0.11.0-rc.9" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b233a7d59d7bfc027208506a33ffc9532b2acb24ddc61fe7e758dc2250db431" +checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1" dependencies = [ "digest 0.11.2", "keccak", diff --git a/crypto_core/Cargo.toml b/crypto_core/Cargo.toml index e7a606b..f6e6709 100644 --- a/crypto_core/Cargo.toml +++ b/crypto_core/Cargo.toml @@ -86,7 +86,7 @@ hmac = { version = "0.13", optional = true } # Using 0.3.0-pre for latest API (breaking changes from 0.1.x) # `getrandom` feature enables system-RNG-based Generate/Encapsulate methods # avoiding rand_core version mismatches between ecosystem crates -ml-kem = { version = "0.3.0-rc.1", optional = true, features = ["getrandom"] } +ml-kem = { version = "0.3.0-rc.2", optional = true, features = ["getrandom"] } # Post-Quantum: ML-DSA / Dilithium (FIPS 204) - EXPERIMENTAL # Using >=0.1.0-rc.5 to fix GHSA-h37v-hp6w-2pp8 (off-by-two in UseHint)