Update bevy version, implement bevy_rand

This commit is contained in:
2025-09-07 20:05:00 +01:00
parent 7e52d6e1bd
commit feed403495
6 changed files with 315 additions and 192 deletions
+6 -5
View File
@@ -4,12 +4,13 @@ version = "0.1.0"
edition = "2021"
[dependencies]
bevy = { version = "0.16", features = ["wayland"] }
bevy = { version = "0.16.1", features = ["wayland"] }
noise = "0.9.0"
rand = "0.9.1"
image = "0.25.6"
bevy_platform = "0.16.0"
rayon = "1.10.0"
rand = "0.9.2"
bevy_rand = { version = "0.11.3", features = ["wyrand"] }
image = "0.25.8"
bevy_platform = "0.16.1"
rayon = "1.11.0"
# Enable max optimizations for dependencies, but not for our code:
[profile.dev.package."*"]