diff --git a/Cargo.lock b/Cargo.lock index d1a8519..9663b1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1331,9 +1331,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", "keccak", diff --git a/frodo-kem/Cargo.toml b/frodo-kem/Cargo.toml index 6b87720..3672d7f 100644 --- a/frodo-kem/Cargo.toml +++ b/frodo-kem/Cargo.toml @@ -63,7 +63,7 @@ openssl-sys = { version = "0.9.104", optional = true } rand_core = { version = "0.10", features = [] } serde = { version = "1.0", features = ["derive"], optional = true } serdect = "0.4" -sha3 = "0.11.0-rc.9" +sha3 = "0.11" subtle = "2.6" thiserror = "2.0" zeroize = "1" diff --git a/ml-kem/Cargo.toml b/ml-kem/Cargo.toml index ebade32..4ce2ae2 100644 --- a/ml-kem/Cargo.toml +++ b/ml-kem/Cargo.toml @@ -29,7 +29,7 @@ array = { version = "0.4.8", package = "hybrid-array", features = ["ctutils", "e module-lattice = { version = "0.2", features = ["ctutils"] } kem = "0.3.0-rc.6" rand_core = "0.10" -sha3 = { version = "0.11.0-rc.9", default-features = false } +sha3 = { version = "0.11", default-features = false } # optional dependencies const-oid = { version = "0.10.1", optional = true, default-features = false, features = ["db"] } diff --git a/x-wing/Cargo.toml b/x-wing/Cargo.toml index 99d9da9..913ea3b 100644 --- a/x-wing/Cargo.toml +++ b/x-wing/Cargo.toml @@ -22,7 +22,7 @@ hazmat = [] kem = "0.3.0-rc.6" ml-kem = { version = "0.3.0-rc.0", default-features = false, features = ["hazmat"] } rand_core = { version = "0.10", default-features = false } -sha3 = { version = "0.11.0-rc.9", default-features = false } +sha3 = { version = "0.11", default-features = false } x25519-dalek = { version = "3.0.0-pre.6", default-features = false, features = ["static_secrets"] } # optional dependencies