From f0e9205f35f501cbc300ac9840105db46ba9e141 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 10:44:57 +0000 Subject: [PATCH] chore(deps): bump rand from 0.8.6 to 0.9.4 in /rust 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] --- rust/Cargo.lock | 27 +++------------------------ rust/cryptomem-rs/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 1c98914..ff17cf8 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -133,7 +133,7 @@ version = "0.1.0" dependencies = [ "ed25519-dalek", "hex", - "rand 0.8.6", + "rand", "reqwest", "serde", "serde_json", @@ -707,7 +707,7 @@ dependencies = [ "bytes", "getrandom 0.3.4", "lru-slab", - "rand 0.9.4", + "rand", "ring", "rustc-hash", "rustls", @@ -748,37 +748,16 @@ version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" -[[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" diff --git a/rust/cryptomem-rs/Cargo.toml b/rust/cryptomem-rs/Cargo.toml index 9eb5b42..fd4b370 100644 --- a/rust/cryptomem-rs/Cargo.toml +++ b/rust/cryptomem-rs/Cargo.toml @@ -15,7 +15,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" sha2 = "0.11" ed25519-dalek = { version = "2", features = ["rand_core"] } -rand = "0.8" +rand = "0.9" hex = "0.4" thiserror = "2" reqwest = { version = "0.12", default-features = false, features = [