diff --git a/Cargo.lock b/Cargo.lock index 54cc6a9..8f41a55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -506,9 +506,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" [[package]] name = "rand_core" -version = "0.10.0-rc-6" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70765ff7112b0fb2d272d24d9a2f907fc206211304328fe58b2db15a5649ef28" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" [[package]] name = "rustc_version" diff --git a/aucpace/Cargo.toml b/aucpace/Cargo.toml index 8df640e..fbd9bd9 100644 --- a/aucpace/Cargo.toml +++ b/aucpace/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.85" [dependencies] curve25519-dalek = { version = "5.0.0-pre.5", default-features = false, features = ["digest", "rand_core"] } password-hash = { version = "0.6.0-rc.11", default-features = false, features = ["phc", "rand_core"] } -rand_core = { version = "0.10.0-rc-6", default-features = false } +rand_core = { version = "0.10.0", default-features = false } subtle = { version = "2.4", default-features = false } # optional dependencies diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index 492f892..489db7b 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -16,7 +16,7 @@ rust-version = "1.85" [dependencies] curve25519-dalek = { version = "5.0.0-pre.5", default-features = false, features = ["rand_core"] } -rand_core = { version = "0.10.0-rc-6", default-features = false } +rand_core = { version = "0.10.0", default-features = false } sha2 = { version = "0.11.0-rc.4", default-features = false } hkdf = { version = "0.13.0-rc.4", default-features = false }