generated from NiklasEi/bevy_game_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: bevy 0.11 and related deps update (#1)
* Updates project to Bevy `0.11.3` and updates related dependencies. * Necessary fixes for breaking changes introduced by updates. * Switched to `bevy_ggrs` main branch to resolve a parent->child transform propagation regression ( See [here](gschup/bevy_ggrs#74) )
- Loading branch information
Showing
24 changed files
with
918 additions
and
698 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "turtle_time" | ||
version = "0.10.3" | ||
version = "0.10.4" | ||
publish = false | ||
authors = ["Mike Eder <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -23,14 +23,16 @@ lto = "thin" | |
|
||
# WASM requirements | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
bevy_ggrs = { version = "0.12", features = ["wasm-bindgen"] } | ||
bevy_ggrs = { git = "https://github.com/gschup/bevy_ggrs.git", branch = "main", features = [ | ||
"wasm-bindgen", | ||
] } | ||
js-sys = { version = "0.3" } | ||
wasm-bindgen = { version = "0.2.84" } | ||
wasm-bindgen-futures = { version = "0.4.34" } | ||
|
||
# Main requirements | ||
[dependencies] | ||
bevy = { version = "0.10.1", default-features = false, features = [ | ||
bevy = { version = "0.11.3", default-features = false, features = [ | ||
"bevy_gltf", | ||
"bevy_winit", | ||
"bevy_render", | ||
|
@@ -43,13 +45,11 @@ bevy = { version = "0.10.1", default-features = false, features = [ | |
"png", | ||
"x11", | ||
] } | ||
bevy_kira_audio = { version = "0.15" } | ||
bevy_asset_loader = { version = "0.15" } | ||
bevy_ggrs = { version = "0.12" } | ||
bevy_matchbox = { version = "*", features = [ | ||
"ggrs", | ||
], git = "https://github.com/johanhelsing/matchbox.git", rev = "8e864f121d616fdd4307819e058133ff959f7e3f" } | ||
bevy-inspector-egui = "0.18.3" | ||
bevy_kira_audio = { git = "https://github.com/NiklasEi/bevy_kira_audio.git", branch = "bevy_main" } | ||
bevy_asset_loader = { version = "0.17" } | ||
bevy_ggrs = { git = "https://github.com/gschup/bevy_ggrs.git", branch = "main" } | ||
bevy_matchbox = { version = "0.7.0", features = ["ggrs"] } | ||
bevy-inspector-egui = "0.19" | ||
bytemuck = { version = "1.7.3", features = ["derive"] } | ||
ggrs = { version = "0.9.4", features = ["sync-send"] } | ||
percentage = { version = "*" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.