diff --git a/Cargo.lock b/Cargo.lock index 7ac29085..b4bd0927 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1365,9 +1365,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", @@ -1484,7 +1484,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.2", "once_cell", "rustix", "windows-sys", diff --git a/ml-dsa/Cargo.toml b/ml-dsa/Cargo.toml index 02e81f19..921f1566 100644 --- a/ml-dsa/Cargo.toml +++ b/ml-dsa/Cargo.toml @@ -35,7 +35,7 @@ pkcs8 = ["dep:const-oid", "dep:pkcs8"] ctutils = { version = "0.4", default-features = false } hybrid-array = { version = "0.4", features = ["extra-sizes"] } module-lattice = "0.2" -sha3 = { version = "0.11.0-rc.8", default-features = false } +sha3 = { version = "0.11", default-features = false } signature = { version = "3.0.0-rc.10", default-features = false, features = ["digest"] } # optional dependencies diff --git a/slh-dsa/Cargo.toml b/slh-dsa/Cargo.toml index 99d3c76d..fd668fae 100644 --- a/slh-dsa/Cargo.toml +++ b/slh-dsa/Cargo.toml @@ -23,7 +23,7 @@ hybrid-array = { version = "0.4", features = ["extra-sizes"] } pkcs8 = { version = "0.11.0-rc.11", default-features = false } rand_core = "0.10" sha2 = { version = "0.11", default-features = false } -sha3 = { version = "0.11.0-rc.7", default-features = false } +sha3 = { version = "0.11", default-features = false } signature = { version = "3.0.0-rc.10", features = ["rand_core"] } typenum = { version = "1.17", features = ["const-generics"] } zerocopy = { version = "0.8", features = ["derive"] } diff --git a/xmss/Cargo.toml b/xmss/Cargo.toml index 931f54ad..164104ed 100644 --- a/xmss/Cargo.toml +++ b/xmss/Cargo.toml @@ -27,7 +27,7 @@ hybrid-array = { version = "0.4", features = ["zeroize"] } pkcs8 = { version = "0.10", optional = true, default-features = false, features = ["alloc"] } rand = "0.10" sha2 = "0.11" -sha3 = "0.11.0-rc.9" +sha3 = "0.11" serdect = { version = "0.4", features = ["alloc"], optional = true } signature = "2" spki = { version = "0.7", optional = true, default-features = false, features = ["alloc"] }