From 27532c35c8d46777051ffca73d124b1dcef451c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 19:02:19 +0000 Subject: [PATCH] chore(deps): bump rand_chacha from 0.3.1 to 0.9.0 Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.3.1 to 0.9.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/rand_chacha-0.3.1...0.9.0) --- updated-dependencies: - dependency-name: rand_chacha dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 +++++--------------------- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e6d3e8f..0823cb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -878,18 +878,8 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", -] - -[[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", + "rand_chacha", + "rand_core", ] [[package]] @@ -899,15 +889,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", + "rand_core", ] -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" - [[package]] name = "rand_core" version = "0.9.3" @@ -945,7 +929,7 @@ dependencies = [ "paste", "profiling", "rand", - "rand_chacha 0.9.0", + "rand_chacha", "simd_helpers", "thiserror 2.0.17", "v_frame", @@ -1210,7 +1194,7 @@ dependencies = [ "image", "indicatif", "rand", - "rand_chacha 0.3.1", + "rand_chacha", "rayon", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 3b0be30..da2cad2 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.9" -rand_chacha = "0.3" +rand_chacha = "0.9" # File walking walkdir = "2.5" # Error handling