Skip to content

Commit

Permalink
Upgrade bevy to v0.11.2 (#86)
Browse files Browse the repository at this point in the history
Hoist a couple of crate-level dependencies to the workspace to have uniform versions and upgrade all bevy packages by 1 find-replace.
  • Loading branch information
varoonp123 authored Aug 19, 2023
1 parent 6566425 commit abea930
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ members = [
serde = "1.0.159"
strum = "0.25.0"
strum_macros = "0.25.1"
bevy = { version = "0.11.0", features = ["serialize"] }
bevy = { version = "0.11.2", features = ["serialize"] }
thiserror = "1.0"
derive_more = "0.99.17"
bevy_ecs_macros = "0.11.2"
bevy_ecs = "0.11.2"

[dependencies]
bevy = {workspace = true}
Expand All @@ -37,7 +39,6 @@ ron = "0.8.0"
rand = "0.8.5"
console_error_panic_hook = "0.1.7"
bevy_kira_audio = { version = "0.16.0", features = ["mp3", "wav"] }
#bevy_editor_pls = "0.4.0"
winit = "0.28.4"
image = "0.24.6"
thiserror = {workspace = true}
Expand Down
4 changes: 2 additions & 2 deletions crates/thetawave_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ serde = {workspace = true}
strum = {workspace = true}
strum_macros = {workspace = true}
derive_more = {workspace = true}
bevy_ecs_macros = "0.11.0"
bevy_ecs = "0.11.0"
bevy_ecs_macros = {workspace = true}
bevy_ecs = {workspace = true}

0 comments on commit abea930

Please sign in to comment.