From e5f60890b5c59d46f3320bf2209d2b09174c9a32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 06:32:28 +0000 Subject: [PATCH] Update rand_chacha requirement from 0.3.1 to 0.9.0 Updates the requirements on [rand_chacha](https://github.com/rust-random/rand) to permit the latest version. - [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-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- benches/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7bd99fc3a2aea..f8f10dcc0dcb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -498,7 +498,7 @@ bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-dev", default-featu [dev-dependencies] rand = "0.8.0" -rand_chacha = "0.3.1" +rand_chacha = "0.9.0" ron = "0.8.0" flate2 = "1.0" serde = { version = "1", features = ["derive"] } diff --git a/benches/Cargo.toml b/benches/Cargo.toml index f5faeec237fc3..419aa36abe257 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -31,7 +31,7 @@ bevy_platform_support = { path = "../crates/bevy_platform_support", default-feat # Other crates glam = "0.29" rand = "0.8" -rand_chacha = "0.3" +rand_chacha = "0.9" # Make `bevy_render` compile on Linux with x11 windowing. x11 vs. Wayland does not matter here # because the benches do not actually open any windows. diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index d7e4f83ce6b22..8e57100491114 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -34,7 +34,7 @@ variadics_please = "1.1" approx = "0.5" # Supply rngs for examples and tests rand = "0.8" -rand_chacha = "0.3" +rand_chacha = "0.9" # Enable the approx feature when testing. bevy_math = { path = ".", default-features = false, features = ["approx"] } glam = { version = "0.29", default-features = false, features = ["approx"] }