Skip to content

Commit 608f902

Browse files
committed
Release 0.16.0-rc.5
1 parent b9f1179 commit 608f902

File tree

50 files changed

+434
-434
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+434
-434
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -527,12 +527,12 @@ libm = ["bevy_internal/libm"]
527527
web = ["bevy_internal/web"]
528528

529529
[dependencies]
530-
bevy_internal = { path = "crates/bevy_internal", version = "0.16.0-rc.4", default-features = false }
530+
bevy_internal = { path = "crates/bevy_internal", version = "0.16.0-rc.5", default-features = false }
531531
tracing = { version = "0.1", default-features = false, optional = true }
532532

533533
# Wasm does not support dynamic linking.
534534
[target.'cfg(not(target_family = "wasm"))'.dependencies]
535-
bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-rc.4", default-features = false, optional = true }
535+
bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-rc.5", default-features = false, optional = true }
536536

537537
[dev-dependencies]
538538
rand = "0.8.0"
@@ -542,14 +542,14 @@ flate2 = "1.0"
542542
serde = { version = "1", features = ["derive"] }
543543
serde_json = "1"
544544
bytemuck = "1.7"
545-
bevy_render = { path = "crates/bevy_render", version = "0.16.0-rc.4", default-features = false }
545+
bevy_render = { path = "crates/bevy_render", version = "0.16.0-rc.5", default-features = false }
546546
# The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself.
547-
bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.0-rc.4", default-features = false }
548-
bevy_state = { path = "crates/bevy_state", version = "0.16.0-rc.4", default-features = false }
549-
bevy_asset = { path = "crates/bevy_asset", version = "0.16.0-rc.4", default-features = false }
550-
bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.0-rc.4", default-features = false }
551-
bevy_image = { path = "crates/bevy_image", version = "0.16.0-rc.4", default-features = false }
552-
bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0-rc.4", default-features = false }
547+
bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.0-rc.5", default-features = false }
548+
bevy_state = { path = "crates/bevy_state", version = "0.16.0-rc.5", default-features = false }
549+
bevy_asset = { path = "crates/bevy_asset", version = "0.16.0-rc.5", default-features = false }
550+
bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.0-rc.5", default-features = false }
551+
bevy_image = { path = "crates/bevy_image", version = "0.16.0-rc.5", default-features = false }
552+
bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0-rc.5", default-features = false }
553553
# Needed to poll Task examples
554554
futures-lite = "2.0.1"
555555
async-std = "1.13"

crates/bevy_a11y/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_a11y"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Provides accessibility support for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -40,10 +40,10 @@ critical-section = [
4040

4141
[dependencies]
4242
# bevy
43-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4", default-features = false }
44-
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.4" }
45-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4", default-features = false }
46-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", default-features = false, optional = true }
43+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
44+
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
45+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
46+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
4747

4848
# other
4949
accesskit = { version = "0.18", default-features = false }

crates/bevy_animation/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_animation"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Provides animation functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,22 +10,22 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.4" }
15-
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.4" }
16-
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.4" }
17-
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.4" }
18-
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.4" }
19-
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.4" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
15+
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
16+
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
17+
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5" }
18+
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
19+
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.5" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
2121
"petgraph",
2222
] }
23-
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.4" }
24-
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.4" }
25-
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.4" }
26-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4" }
27-
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.4" }
28-
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.4", default-features = false, features = [
23+
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
24+
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
25+
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
26+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
27+
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
28+
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
2929
"std",
3030
"serialize",
3131
] }

crates/bevy_app/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_app"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -74,14 +74,14 @@ web = [
7474

7575
[dependencies]
7676
# bevy
77-
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.4" }
78-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4", default-features = false }
79-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", default-features = false, optional = true }
80-
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.4", default-features = false, features = [
77+
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
78+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
79+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
80+
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, features = [
8181
"alloc",
8282
] }
83-
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.4", default-features = false }
84-
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.4", default-features = false }
83+
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false }
84+
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
8585

8686
# other
8787
downcast-rs = { version = "2", default-features = false }

crates/bevy_asset/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Provides asset functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -19,15 +19,15 @@ watch = []
1919
trace = []
2020

2121
[dependencies]
22-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4" }
23-
bevy_asset_macros = { path = "macros", version = "0.16.0-rc.4" }
24-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4" }
25-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", features = [
22+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
23+
bevy_asset_macros = { path = "macros", version = "0.16.0-rc.5" }
24+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
25+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
2626
"uuid",
2727
] }
28-
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.4" }
29-
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.4" }
30-
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.4", default-features = false, features = [
28+
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
29+
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
30+
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
3131
"std",
3232
] }
3333

@@ -53,7 +53,7 @@ uuid = { version = "1.13.1", features = ["v4"] }
5353
tracing = { version = "0.1", default-features = false, features = ["std"] }
5454

5555
[target.'cfg(target_os = "android")'.dependencies]
56-
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.4" }
56+
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
5757

5858
[target.'cfg(target_arch = "wasm32")'.dependencies]
5959
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
@@ -66,13 +66,13 @@ web-sys = { version = "0.3", features = [
6666
wasm-bindgen-futures = "0.4"
6767
js-sys = "0.3"
6868
uuid = { version = "1.13.1", default-features = false, features = ["js"] }
69-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4", default-features = false, features = [
69+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
7070
"web",
7171
] }
72-
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.4", default-features = false, features = [
72+
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false, features = [
7373
"web",
7474
] }
75-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", default-features = false, features = [
75+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
7676
"web",
7777
] }
7878

crates/bevy_asset/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset_macros"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Derive implementations for bevy_asset"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.4" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
1616

1717
syn = "2.0"
1818
proc-macro2 = "1.0"

crates/bevy_audio/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_audio"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,13 +10,13 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.4" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4" }
16-
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.4" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4" }
18-
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.4" }
19-
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.4" }
13+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
16+
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
18+
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
19+
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
2020

2121
# other
2222
rodio = { version = "0.20", default-features = false }
@@ -30,10 +30,10 @@ cpal = { version = "0.15", optional = true }
3030
rodio = { version = "0.20", default-features = false, features = [
3131
"wasm-bindgen",
3232
] }
33-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4", default-features = false, features = [
33+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
3434
"web",
3535
] }
36-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", default-features = false, features = [
36+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
3737
"web",
3838
] }
3939

crates/bevy_color/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_color"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Types for representing and manipulating color values"
66
homepage = "https://bevyengine.org"
@@ -10,10 +10,10 @@ keywords = ["bevy", "color"]
1010
rust-version = "1.85.0"
1111

1212
[dependencies]
13-
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.4", default-features = false, features = [
13+
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false, features = [
1414
"curve",
1515
] }
16-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4", default-features = false, optional = true }
16+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
1717
bytemuck = { version = "1", features = ["derive"] }
1818
serde = { version = "1.0", features = [
1919
"derive",

crates/bevy_core_pipeline/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core_pipeline"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
authors = [
66
"Bevy Contributors <bevyengine@gmail.com>",
@@ -22,20 +22,20 @@ smaa_luts = ["bevy_render/ktx2", "bevy_image/ktx2", "bevy_image/zstd"]
2222

2323
[dependencies]
2424
# bevy
25-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4" }
26-
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.4" }
27-
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.4" }
28-
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.4" }
29-
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.4" }
30-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4" }
31-
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.4" }
32-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4" }
33-
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.4" }
34-
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.4" }
35-
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.4" }
36-
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.4" }
37-
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.4" }
38-
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.4", default-features = false, features = [
25+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
26+
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
27+
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
28+
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
29+
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5" }
30+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
31+
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
32+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
33+
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
34+
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
35+
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
36+
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
37+
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
38+
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
3939
"std",
4040
"serialize",
4141
] }

crates/bevy_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_derive"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Provides derive implementations for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.4" }
15+
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.5" }
1616

1717
quote = "1.0"
1818
syn = { version = "2.0", features = ["full"] }

crates/bevy_dev_tools/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_dev_tools"
3-
version = "0.16.0-rc.4"
3+
version = "0.16.0-rc.5"
44
edition = "2024"
55
description = "Collection of developer tools for the Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -13,21 +13,21 @@ bevy_ci_testing = ["serde", "ron"]
1313

1414
[dependencies]
1515
# bevy
16-
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.4" }
17-
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.4" }
18-
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.4" }
19-
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.4" }
20-
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.4" }
21-
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.4" }
22-
bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.4" }
23-
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.4" }
24-
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.4" }
25-
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.4" }
26-
bevy_text = { path = "../bevy_text", version = "0.16.0-rc.4" }
27-
bevy_ui = { path = "../bevy_ui", version = "0.16.0-rc.4" }
28-
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.4" }
29-
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.4" }
30-
bevy_state = { path = "../bevy_state", version = "0.16.0-rc.4" }
16+
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
17+
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
18+
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
19+
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5" }
20+
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
21+
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5" }
22+
bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.5" }
23+
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
24+
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
25+
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
26+
bevy_text = { path = "../bevy_text", version = "0.16.0-rc.5" }
27+
bevy_ui = { path = "../bevy_ui", version = "0.16.0-rc.5" }
28+
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
29+
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
30+
bevy_state = { path = "../bevy_state", version = "0.16.0-rc.5" }
3131

3232
# other
3333
serde = { version = "1.0", features = ["derive"], optional = true }

0 commit comments

Comments
 (0)