From a6a515239883158c8b8d75b359337a806514dd23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 18:53:55 +0000 Subject: [PATCH] cargo: 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 | 26 +++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d362098..e46b7d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,7 +1055,7 @@ dependencies = [ "num_enum", "pretty_assertions", "rand", - "rand_chacha", + "rand_chacha 0.10.0", "regex", "ron", "serde", @@ -2289,8 +2289,8 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha", - "rand_core", + "rand_chacha 0.9.0", + "rand_core 0.9.3", ] [[package]] @@ -2300,7 +2300,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core", + "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]] @@ -2312,6 +2322,12 @@ dependencies = [ "getrandom", ] +[[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.5.1" @@ -2350,7 +2366,7 @@ dependencies = [ "paste", "profiling", "rand", - "rand_chacha", + "rand_chacha 0.9.0", "simd_helpers", "thiserror 2.0.17", "v_frame", diff --git a/Cargo.toml b/Cargo.toml index 063bd4b..4444c83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ bevy_reflect = { version = "0.18", default-features = false, features = [ darkomen = { path = ".", features = ["bevy_reflect"] } imageproc = "0.26" pretty_assertions = "1.4" -rand_chacha = "0.9" +rand_chacha = "0.10" regex = "1.11" ron = "0.12" sha2 = "0.10"