diff --git a/Cargo.lock b/Cargo.lock index 23a420b0..ceaef6fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1377,9 +1377,9 @@ dependencies = [ [[package]] name = "ml-kem" -version = "0.3.0-rc.2" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04437cb1a66c0b78740927b76cc61f218344b9f6ef3dd430e283274a718ef0e9" +checksum = "68c77d5ff6d755d09a0ef4d4d28c2b7e83658fe83e8c736d55e93d43e380d1cd" dependencies = [ "hybrid-array", "kem", @@ -1390,9 +1390,9 @@ dependencies = [ [[package]] name = "module-lattice" -version = "0.2.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cbdc2ac6ead7d0889a5d96e70b7f11a8812702a100ca7c65c5c71fdf076e182" +checksum = "dc7c90d33a0dac244570c26461d761ffaeadb3bfc2b17cc625ae2185cafdffae" dependencies = [ "ctutils", "hybrid-array", diff --git a/crypto_core/Cargo.toml b/crypto_core/Cargo.toml index 5bd479ce..5d2382a1 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.2", optional = true, features = ["getrandom"] } +ml-kem = { version = "0.3.0", 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)