Skip to content

Commit 1aead61

Browse files
committed
Update to Bevy 0.18.0-rc
1 parent ffae24b commit 1aead61

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

Cargo.toml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,15 @@ libm = ["bevy/libm"]
2727
critical-section = ["bevy/critical-section"]
2828

2929
[dependencies]
30-
bevy = { version = "0.17", default-features = false }
30+
bevy = { version = "0.18.0-rc", default-features = false }
3131

3232
# Serialization
3333
serde = { version = "1.0", default-features = false, optional = true }
3434

3535
[dev-dependencies]
36-
bevy = { version = "0.17", default-features = false, features = [
37-
"bevy_core_pipeline",
38-
"bevy_text",
39-
"bevy_ui",
40-
"bevy_asset",
41-
"bevy_render",
42-
"bevy_sprite",
43-
"bevy_sprite_render",
44-
"default_font",
45-
"bevy_winit",
46-
"bevy_window",
47-
"x11",
36+
bevy = { version = "0.18.0-rc", default-features = false, features = [
37+
"2d",
38+
"ui",
4839
] }
4940

5041
[lints.clippy]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ use extrapolation::*;
161161
use interpolation::*;
162162

163163
use bevy::{
164-
ecs::{component::Tick, query::QueryData, system::SystemChangeTick},
164+
ecs::{change_detection::Tick, query::QueryData, system::SystemChangeTick},
165165
prelude::*,
166166
};
167167

0 commit comments

Comments
 (0)