From ab0fac5200369c7ab4492d6c5a55046feac84ecf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 20:34:51 +0000 Subject: [PATCH] chore(deps): bump rand_chacha from 0.9.0 to 0.10.0 Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.9.0 to 0.10.0. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.9.0...0.10.0) --- updated-dependencies: - dependency-name: rand_chacha dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++------ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3297f45..0f21a61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -972,7 +972,7 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" dependencies = [ - "rand_chacha", + "rand_chacha 0.9.0", "rand_core 0.9.3", ] @@ -998,10 +998,14 @@ dependencies = [ ] [[package]] -name = "rand_core" -version = "0.6.4" +name = "rand_chacha" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb" +dependencies = [ + "ppv-lite86", + "rand_core 0.10.1", +] [[package]] name = "rand_core" @@ -1046,7 +1050,7 @@ dependencies = [ "paste", "profiling", "rand 0.9.4", - "rand_chacha", + "rand_chacha 0.9.0", "simd_helpers", "thiserror", "v_frame", @@ -1309,7 +1313,7 @@ dependencies = [ "image", "indicatif", "rand 0.10.1", - "rand_chacha", + "rand_chacha 0.10.0", "rayon", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 3cbbef1..111fc5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" # Random number generation for splits rand = "0.10" -rand_chacha = "0.9" +rand_chacha = "0.10" # File walking walkdir = "2.5" # Error handling