Update to Bevy 0.16
Also update RNG handling
This commit is contained in:
parent
8a1064138f
commit
b5792648eb
4 changed files with 850 additions and 556 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue