Skip to content

Commit c11e294

Browse files
Update rand requirement from 0.8.0 to 0.9.1
Updates the requirements on [rand](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](rust-random/rand@0.8.0...rand_core-0.9.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 31e9a3c commit c11e294

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ tracing = { version = "0.1", default-features = false, optional = true }
546546
bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-dev", default-features = false, optional = true }
547547

548548
[dev-dependencies]
549-
rand = "0.8.0"
549+
rand = "0.9.1"
550550
rand_chacha = "0.3.1"
551551
ron = "0.8.0"
552552
flate2 = "1.0"

benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bevy_platform = { path = "../crates/bevy_platform", default-features = false, fe
3030

3131
# Other crates
3232
glam = "0.29"
33-
rand = "0.8"
33+
rand = "0.9"
3434
rand_chacha = "0.3"
3535

3636
# Make `bevy_render` compile on Linux with x11 windowing. x11 vs. Wayland does not matter here

crates/bevy_ecs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ concurrent-queue = { version = "2.5.0", default-features = false, features = [
139139
] }
140140

141141
[dev-dependencies]
142-
rand = "0.8"
142+
rand = "0.9"
143143
static_assertions = "1.1.0"
144144
serde_test = "1.0"
145145

crates/bevy_math/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde = { version = "1", default-features = false, features = [
2222
], optional = true }
2323
libm = { version = "0.2", optional = true }
2424
approx = { version = "0.5", default-features = false, optional = true }
25-
rand = { version = "0.8", default-features = false, optional = true }
25+
rand = { version = "0.9", default-features = false, optional = true }
2626
rand_distr = { version = "0.4.3", optional = true }
2727
smallvec = { version = "1.11" }
2828
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev", default-features = false, features = [
@@ -33,7 +33,7 @@ variadics_please = "1.1"
3333
[dev-dependencies]
3434
approx = "0.5"
3535
# Supply rngs for examples and tests
36-
rand = "0.8"
36+
rand = "0.9"
3737
rand_chacha = "0.3"
3838
# Enable the approx feature when testing.
3939
bevy_math = { path = ".", default-features = false, features = ["approx"] }

0 commit comments

Comments
 (0)