Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Upgrading to bevy v0.14 #214

Merged
merged 7 commits into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,219 changes: 1,367 additions & 852 deletions Cargo.lock

Large diffs are not rendered by default.

21 changes: 11 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package.version = "0.1.0"
resolver = "2"
members = [
"bevy_grid_squared",
"bevy_magic_light_2d",
"common/action",
"common/assets",
"common/loading_screen",
Expand All @@ -32,32 +31,35 @@ members = [


[workspace.dependencies.bevy]
version = "=0.13.2"
version = "=0.14.0"
default-features = false
features = [
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_gizmos",
"bevy_pbr", # required by light crate
"bevy_render",
"bevy_sprite",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_winit",
"hdr",
"multi-threaded",
"multi_threaded",
"png",
"tonemapping_luts",
"webgl2",
"x11",
]

[workspace.dependencies]
bevy_pixel_camera = "0.13"
bevy_webp_anim = "0.3"
bevy-inspector-egui = { version = "0.24", default-features = false }
leafwing-input-manager = "0.13"
bevy_egui = "0.27"
bevy_pixel_camera = { git = "https://github.com/porkbrain/bevy_pixel_camera.git", branch = "bevy-v0.14" }
porkbrain marked this conversation as resolved.
Show resolved Hide resolved
bevy_webp_anim = "0.4"
bevy-inspector-egui = { version = "0.25", default-features = false, features = [
"bevy_render",
] }
leafwing-input-manager = "0.14"
bevy_egui = "0.28"

scene_building1_basement1 = { path = "scenes/building1_basement1" }
scene_building1_basement2 = { path = "scenes/building1_basement2" }
Expand All @@ -74,7 +76,6 @@ scene_sewers = { path = "scenes/sewers" }
scene_twinpeaks_apartment = { path = "scenes/twinpeaks_apartment" }

bevy_grid_squared = { path = "bevy_grid_squared", features = ["serde"] }
bevy_magic_light_2d = { path = "bevy_magic_light_2d" }
common_action = { path = "common/action" }
common_assets = { path = "common/assets" }
common_ext = { path = "common/ext" }
Expand Down
16 changes: 0 additions & 16 deletions bevy_magic_light_2d/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions bevy_magic_light_2d/Cargo.toml

This file was deleted.

202 changes: 0 additions & 202 deletions bevy_magic_light_2d/LICENSE

This file was deleted.

3 changes: 0 additions & 3 deletions bevy_magic_light_2d/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions bevy_magic_light_2d/rustchannel.toml

This file was deleted.

Loading