Update to Bevy 0.16

Also update RNG handling
This commit is contained in:
Michael Bradley 2025-05-17 15:57:35 -04:00
parent 8a1064138f
commit b5792648eb
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
4 changed files with 850 additions and 556 deletions

View file

@ -18,8 +18,8 @@ incremental = false
debug = false
[dependencies]
avian2d = { version = "0.2.1", features = ["serialize", "simd"] }
bevy = { version = "0.15.3", default-features = false, features = [
avian2d = { version = "0.3.0", features = ["serialize", "simd"] }
bevy = { version = "0.16.0", default-features = false, features = [
"bevy_color",
"bevy_core_pipeline",
"bevy_render",
@ -28,12 +28,14 @@ bevy = { version = "0.15.3", default-features = false, features = [
"bevy_winit",
"dynamic_linking",
"multi_threaded",
"std",
"wayland",
] }
bevy_rand = { version = "0.11.0", features = ["wyrand", "std"] }
clap = { version = "4.5.32", features = ["derive"] }
log = { version = "*", features = [
"max_level_debug",
"release_max_level_warn",
] }
rand = "0.9.0"
rand_chacha = "0.9.0"
rand = { version = "0.9.1", default-features = false, features = ["std"] }
wyrand = "0.3.2"