From 2d5a67e307bdd8d2b3fd6edb90433c6cff562e6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 02:59:08 +0000 Subject: [PATCH] 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/commits) --- 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 | 18 +++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fcda660..804454b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,6 +414,16 @@ dependencies = [ "rand_core 0.9.3", ] +[[package]] +name = "rand_chacha" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb" +dependencies = [ + "ppv-lite86", + "rand_core 0.10.0", +] + [[package]] name = "rand_core" version = "0.6.4" @@ -432,6 +442,12 @@ dependencies = [ "getrandom 0.3.3", ] +[[package]] +name = "rand_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" + [[package]] name = "rand_distr" version = "0.4.3" @@ -506,7 +522,7 @@ dependencies = [ "itertools", "pretty_assertions", "rand 0.9.2", - "rand_chacha 0.9.0", + "rand_chacha 0.10.0", "rayon", "regex", "statrs", diff --git a/Cargo.toml b/Cargo.toml index fc1ba02..d29a3a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ regex = "1.12.3" [dev-dependencies] pretty_assertions = "1.4.1" -rand_chacha = "0.9.0" +rand_chacha = "0.10.0" rayon = "1.11.0" statrs = "0.18.0"