Update to Bevy 0.17.2
All checks were successful
CI / Formatting (push) Successful in 32s

This commit is contained in:
Michael Bradley 2025-10-13 15:17:23 -04:00
parent 53fe3333f0
commit 27b4644730
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
12 changed files with 852 additions and 642 deletions

View file

@ -39,14 +39,15 @@ incremental = false
debug = false
[dependencies]
avian2d = { version = "0.3.0", features = ["serialize", "simd"] }
bevy = { version = "0.16.1", default-features = false, features = [
avian2d = { version = "0.4.0", features = ["serialize", "simd"] }
bevy = { version = "0.17.2", default-features = false, features = [
"bevy_color",
"bevy_core_pipeline",
"bevy_remote",
"bevy_render",
"bevy_state",
"bevy_ui",
"bevy_ui_render",
"bevy_window",
"bevy_winit",
"default_font",
@ -54,7 +55,7 @@ bevy = { version = "0.16.1", default-features = false, features = [
"std",
"wayland",
] }
bevy_rand = { version = "0.11.0", features = ["wyrand", "std"] }
bevy_rand = { version = "0.12.0", features = ["wyrand", "std"] }
clap = { version = "4.5.48", features = ["derive"] }
crossbeam-channel = "0.5.15"
log = { version = "0.4.28", features = ["release_max_level_warn"] }