Bevy 0.16 upgrade (#24)
This commit is contained in:
24
Cargo.toml
24
Cargo.toml
@@ -11,7 +11,7 @@ opt-level = 3
|
||||
dbg = ["avian3d/debug-plugin", "dep:bevy-inspector-egui"]
|
||||
|
||||
[dependencies]
|
||||
avian3d = { version = "0.2.1", default-features = false, features = [
|
||||
avian3d = { version = "0.2", default-features = false, features = [
|
||||
"3d",
|
||||
"f32",
|
||||
"parry-f32",
|
||||
@@ -20,23 +20,22 @@ avian3d = { version = "0.2.1", default-features = false, features = [
|
||||
"bevy_picking", # todo: Consider if this one is necessary
|
||||
"parallel",
|
||||
] }
|
||||
bevy = "0.15.3"
|
||||
bevy = { version = "0.16.0", features = ["track_location"] }
|
||||
bevy_trenchbroom = { version = "0.7", features = [
|
||||
"auto_register",
|
||||
"avian",
|
||||
"client",
|
||||
] }
|
||||
nil = "0.14.0"
|
||||
bevy_asset_loader = "0.22.0"
|
||||
bevy_sprite3d = "4.0.0"
|
||||
bevy_asset_loader = "0.23.0-rc.3"
|
||||
bevy_sprite3d = "5.0.0"
|
||||
rand = "=0.8.5"
|
||||
bevy-inspector-egui = { version = "0.30", optional = true }
|
||||
bevy_polyline = "0.11.0"
|
||||
bevy-inspector-egui = { version = "0.31", optional = true }
|
||||
bevy-steamworks = "0.13.0"
|
||||
bevy_ballistic = "0.1.0"
|
||||
bevy-ui-gradients = "0.3.0"
|
||||
bevy_debug_log = "0.5.0"
|
||||
bevy_common_assets = { version = "0.12.0", features = ["ron"] }
|
||||
bevy_ballistic = "0.3.0"
|
||||
bevy-ui-gradients = "0.4.0"
|
||||
bevy_debug_log = "0.6.0"
|
||||
bevy_common_assets = { version = "0.13.0", features = ["ron"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
ron = "0.8"
|
||||
|
||||
@@ -48,4 +47,7 @@ too_many_arguments = "allow"
|
||||
type_complexity = "allow"
|
||||
|
||||
[patch.crates-io]
|
||||
bevy-steamworks = { git = "https://github.com/Laocoon7/bevy_steamworks.git" }
|
||||
bevy-steamworks = { git = "https://github.com/HouraiTeahouse/bevy_steamworks.git", rev = "0bc62fc" }
|
||||
avian3d = { git = "https://github.com/Jondolf/avian.git", rev = "9511076" }
|
||||
bevy_ballistic = { git = "https://github.com/rustunit/bevy_ballistic.git", branch = "bevy-0.16" }
|
||||
bevy_trenchbroom = { git = "https://github.com/extrawurst/bevy_trenchbroom.git", branch = "bevy-0.16.0" }
|
||||
|
||||
Reference in New Issue
Block a user