Skip to content

Commit

Permalink
Merge pull request #60 from tomara-x/main
Browse files Browse the repository at this point in the history
update to bevy 0.14
  • Loading branch information
johanhelsing authored Jul 8, 2024
2 parents dd050b1 + d62b4c6 commit 059e953
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ version = "0.11.1"
bevy_egui = ["dep:bevy_egui"]

[dependencies]
bevy = {version = "0.13", features = ["bevy_render"], default-features = false}
bevy_egui = {version = "0.25", optional = true, default-features = false}
bevy = {version = "0.14", features = ["bevy_render"], default-features = false}
bevy_egui = {version = "0.28", optional = true, default-features = false}

[dev-dependencies]
bevy = {version = "0.13", default-features = false, features = [
bevy = {version = "0.14", default-features = false, features = [
"bevy_render",
"bevy_asset",
"bevy_sprite",
"bevy_winit",
"bevy_core_pipeline",
"x11", # github actions runners don't have libxkbcommon installed, so can't use wayland
]}
bevy-inspector-egui = { version = "0.23", default-features = false }
bevy_egui = {version = "0.25", default-features = false, features = ["default_fonts"]}
bevy-inspector-egui = { version = "0.25", default-features = false, features = ["bevy_render"]}
bevy_egui = {version = "0.28", default-features = false, features = ["default_fonts"]}
rand = "0.8"

[[example]]
Expand Down

0 comments on commit 059e953

Please sign in to comment.