From a9b51a9e7d4d411a61d6516e45380a14f9afe2dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 20:56:44 +0000 Subject: [PATCH] chore(deps): bump rand from 0.8.6 to 0.9.4 Bumps [rand](https://github.com/rust-random/rand) from 0.8.6 to 0.9.4. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.9.4/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.6...0.9.4) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 ++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95acea3d..4b622567 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1063,7 +1063,7 @@ dependencies = [ "num-traits", "pretty_assertions", "proptest", - "rand 0.8.6", + "rand", "reqwest", "rustfft", "rustyline", @@ -2589,8 +2589,8 @@ dependencies = [ "bit-vec", "bitflags", "num-traits", - "rand 0.9.4", - "rand_chacha 0.9.0", + "rand", + "rand_chacha", "rand_xorshift", "regex-syntax", "rusty-fork", @@ -2706,7 +2706,7 @@ dependencies = [ "bytes", "getrandom 0.3.4", "lru-slab", - "rand 0.9.4", + "rand", "ring", "rustc-hash", "rustls", @@ -2763,37 +2763,16 @@ dependencies = [ "nibble_vec", ] -[[package]] -name = "rand" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - [[package]] name = "rand" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" dependencies = [ - "rand_chacha 0.9.0", + "rand_chacha", "rand_core 0.9.5", ] -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", -] - [[package]] name = "rand_chacha" version = "0.9.0" @@ -4017,7 +3996,7 @@ dependencies = [ "http", "httparse", "log", - "rand 0.9.4", + "rand", "sha1", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 163d5775..3849e9dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ ciborium = { version = "0.2", optional = true } chrono = { version = "0.4", features = ["serde"] } # Random number generation (for resilience jitter) -rand = "0.8" +rand = "0.9" # Temporary files (used by prover backends to invoke external solvers) tempfile = "3"