Skip to content

Commit 21ba37f

Browse files
committed
Update demos to bevy 0.15
1 parent 975b320 commit 21ba37f

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ rust.unexpected_cfgs = { level = "warn", check-cfg = [
2323
] }
2424

2525
[patch.crates-io]
26-
bevy_egui = { git = "https://github.com/Vrixyz/bevy_egui", branch = "bevy_main" }
2726

2827
[profile.release]
2928
opt-level = 'z'

crates/wgsparkl-testbed2d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ futures-test = "0.3"
3131
serial_test = "3"
3232
approx = "0.5"
3333
async-std = { version = "1", features = ["attributes"] }
34-
bevy = { version = "0.15.0-rc.3", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
34+
bevy = { version = "0.15.0", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
3535
#bevy_wasm_window_resize = "0.4"
3636
#bevy_editor_cam = "0.3"
3737
#bevy_mod_picking = { version = "0.20", default-features = false }
38-
bevy_egui = { version = "0.30", default-features = false, features = ["default_fonts", "render"] }
38+
bevy_egui = { version = "0.31", default-features = false, features = ["default_fonts", "render"] }
3939
wgsparkl2d = { path = "../wgsparkl2d" }

crates/wgsparkl-testbed3d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ futures-test = "0.3"
3131
serial_test = "3"
3232
approx = "0.5"
3333
async-std = { version = "1", features = ["attributes"] }
34-
bevy = { version = "0.15.0-rc.3", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
34+
bevy = { version = "0.15.0", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
3535
#bevy_editor_cam = "0.3"
3636
#bevy_mod_picking = { version = "0.20", default-features = false }
3737
#bevy_wasm_window_resize = "0.4"
38-
bevy_egui = { version = "0.30", default-features = false, features = ["default_fonts", "render"] }
38+
bevy_egui = { version = "0.31", default-features = false, features = ["default_fonts", "render"] }
3939
wgsparkl3d = { path = "../wgsparkl3d" }

crates/wgsparkl2d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ futures-test = "0.3"
3434
serial_test = "3"
3535
approx = "0.5"
3636
async-std = { version = "1", features = ["attributes"] }
37-
bevy = { version = "0.15.0-dev", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
37+
bevy = { version = "0.15.0", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
3838
wgsparkl_testbed2d = { path = "../wgsparkl-testbed2d" }

crates/wgsparkl3d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ futures-test = "0.3"
3434
serial_test = "3"
3535
approx = "0.5"
3636
async-std = { version = "1", features = ["attributes"] }
37-
bevy = { version = "0.15.0-rc.3", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
37+
bevy = { version = "0.15.0", features = ["shader_format_glsl", "shader_format_spirv", "webgpu"] }
3838
wgsparkl_testbed3d = { path = "../wgsparkl-testbed3d" }

0 commit comments

Comments
 (0)