From 1fda3bc15cffa8ebe0820dc7f18846adc5b0a166 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 24 Dec 2025 14:09:49 -0700 Subject: [PATCH] Bump `rand_core` dependency to v0.10.0-rc-3 --- Cargo.lock | 4 ++-- crypto-common/Cargo.toml | 2 +- elliptic-curve/Cargo.toml | 2 +- kem/Cargo.toml | 2 +- password-hash/Cargo.toml | 2 +- signature/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ee340b6a..97bb871c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -398,9 +398,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand_core" -version = "0.10.0-rc-2" +version = "0.10.0-rc-3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "104a23e4e8b77312a823b6b5613edbac78397e2f34320bc7ac4277013ec4478e" +checksum = "f66ee92bc15280519ef199a274fe0cafff4245d31bc39aaa31c011ad56cb1f05" [[package]] name = "rustcrypto-ff" diff --git a/crypto-common/Cargo.toml b/crypto-common/Cargo.toml index 6b6707497..ce4535f61 100644 --- a/crypto-common/Cargo.toml +++ b/crypto-common/Cargo.toml @@ -17,7 +17,7 @@ hybrid-array = "0.4" # optional dependencies getrandom = { version = "0.3", optional = true, features = ["sys_rng"] } -rand_core = { version = "0.10.0-rc-2", optional = true } +rand_core = { version = "0.10.0-rc-3", optional = true } [features] getrandom = ["rand_core", "dep:getrandom"] diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 05d8a8c7c..1c14079eb 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -20,7 +20,7 @@ and public/secret keys composed thereof. base16ct = "0.3" crypto-bigint = { version = "0.7.0-rc.10", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] } hybrid-array = { version = "0.4", default-features = false, features = ["zeroize"] } -rand_core = { version = "0.10.0-rc-2", default-features = false } +rand_core = { version = "0.10.0-rc-3", default-features = false } subtle = { version = "2.6", default-features = false } zeroize = { version = "1.7", default-features = false } diff --git a/kem/Cargo.toml b/kem/Cargo.toml index 98d7ed3b4..02ff31bf7 100644 --- a/kem/Cargo.toml +++ b/kem/Cargo.toml @@ -14,7 +14,7 @@ description = "Traits for key encapsulation mechanisms" [dependencies] crypto-common = { version = "0.2.0-rc.5", features = ["rand_core"], path = "../crypto-common" } -rand_core = "0.10.0-rc-2" +rand_core = "0.10.0-rc-3" zeroize = { version = "1.7", default-features = false } [package.metadata.docs.rs] diff --git a/password-hash/Cargo.toml b/password-hash/Cargo.toml index bd2410118..b32bd58a7 100644 --- a/password-hash/Cargo.toml +++ b/password-hash/Cargo.toml @@ -19,7 +19,7 @@ as well as a `no_std`-friendly implementation of the PHC string format [dependencies] getrandom = { version = "0.3", optional = true, default-features = false } phc = { version = "0.6.0-rc.0", optional = true, default-features = false } -rand_core = { version = "0.10.0-rc-2", optional = true, default-features = false } +rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false } [features] alloc = ["phc?/alloc"] diff --git a/signature/Cargo.toml b/signature/Cargo.toml index aa468b3b4..ce8f2d453 100644 --- a/signature/Cargo.toml +++ b/signature/Cargo.toml @@ -14,7 +14,7 @@ description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed2551 [dependencies] digest = { version = "0.11.0-rc.4", optional = true, default-features = false } -rand_core = { version = "0.10.0-rc-2", optional = true, default-features = false } +rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false } [features] alloc = []