Release 0.16.0
This commit is contained in:
parent
31ff41935a
commit
e9418b3845
20
Cargo.toml
20
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy"
|
name = "bevy"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
categories = ["game-engines", "graphics", "gui", "rendering"]
|
categories = ["game-engines", "graphics", "gui", "rendering"]
|
||||||
description = "A refreshingly simple data-driven game engine and app framework"
|
description = "A refreshingly simple data-driven game engine and app framework"
|
||||||
@ -527,12 +527,12 @@ libm = ["bevy_internal/libm"]
|
|||||||
web = ["bevy_internal/web"]
|
web = ["bevy_internal/web"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_internal = { path = "crates/bevy_internal", version = "0.16.0-rc.5", default-features = false }
|
bevy_internal = { path = "crates/bevy_internal", version = "0.16.0", default-features = false }
|
||||||
tracing = { version = "0.1", default-features = false, optional = true }
|
tracing = { version = "0.1", default-features = false, optional = true }
|
||||||
|
|
||||||
# Wasm does not support dynamic linking.
|
# Wasm does not support dynamic linking.
|
||||||
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
||||||
bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0", default-features = false, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.8.0"
|
rand = "0.8.0"
|
||||||
@ -542,14 +542,14 @@ flate2 = "1.0"
|
|||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
bytemuck = "1.7"
|
bytemuck = "1.7"
|
||||||
bevy_render = { path = "crates/bevy_render", version = "0.16.0-rc.5", default-features = false }
|
bevy_render = { path = "crates/bevy_render", version = "0.16.0", default-features = false }
|
||||||
# The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself.
|
# The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself.
|
||||||
bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_state = { path = "crates/bevy_state", version = "0.16.0-rc.5", default-features = false }
|
bevy_state = { path = "crates/bevy_state", version = "0.16.0", default-features = false }
|
||||||
bevy_asset = { path = "crates/bevy_asset", version = "0.16.0-rc.5", default-features = false }
|
bevy_asset = { path = "crates/bevy_asset", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.0-rc.5", default-features = false }
|
bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.0", default-features = false }
|
||||||
bevy_image = { path = "crates/bevy_image", version = "0.16.0-rc.5", default-features = false }
|
bevy_image = { path = "crates/bevy_image", version = "0.16.0", default-features = false }
|
||||||
bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0-rc.5", default-features = false }
|
bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0", default-features = false }
|
||||||
# Needed to poll Task examples
|
# Needed to poll Task examples
|
||||||
futures-lite = "2.0.1"
|
futures-lite = "2.0.1"
|
||||||
async-std = "1.13"
|
async-std = "1.13"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_a11y"
|
name = "bevy_a11y"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides accessibility support for Bevy Engine"
|
description = "Provides accessibility support for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -40,10 +40,10 @@ critical-section = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
accesskit = { version = "0.18", default-features = false }
|
accesskit = { version = "0.18", default-features = false }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_animation"
|
name = "bevy_animation"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides animation functionality for Bevy Engine"
|
description = "Provides animation functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,22 +10,22 @@ keywords = ["bevy"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5" }
|
bevy_log = { path = "../bevy_log", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.5" }
|
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [
|
||||||
"petgraph",
|
"petgraph",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
|
bevy_time = { path = "../bevy_time", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_app"
|
name = "bevy_app"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides core App functionality for Bevy Engine"
|
description = "Provides core App functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -74,14 +74,14 @@ web = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
downcast-rs = { version = "2", default-features = false }
|
downcast-rs = { version = "2", default-features = false }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_asset"
|
name = "bevy_asset"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides asset functionality for Bevy Engine"
|
description = "Provides asset functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -19,15 +19,15 @@ watch = []
|
|||||||
trace = []
|
trace = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset_macros = { path = "macros", version = "0.16.0-rc.5" }
|
bevy_asset_macros = { path = "macros", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [
|
||||||
"uuid",
|
"uuid",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ uuid = { version = "1.13.1", features = ["v4"] }
|
|||||||
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "android")'.dependencies]
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
# 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 = [
|
|||||||
wasm-bindgen-futures = "0.4"
|
wasm-bindgen-futures = "0.4"
|
||||||
js-sys = "0.3"
|
js-sys = "0.3"
|
||||||
uuid = { version = "1.13.1", default-features = false, features = ["js"] }
|
uuid = { version = "1.13.1", default-features = false, features = ["js"] }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_asset_macros"
|
name = "bevy_asset_macros"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Derive implementations for bevy_asset"
|
description = "Derive implementations for bevy_asset"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0" }
|
||||||
|
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_audio"
|
name = "bevy_audio"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides audio functionality for Bevy Engine"
|
description = "Provides audio functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,13 +10,13 @@ keywords = ["bevy"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
rodio = { version = "0.20", default-features = false }
|
rodio = { version = "0.20", default-features = false }
|
||||||
@ -30,10 +30,10 @@ cpal = { version = "0.15", optional = true }
|
|||||||
rodio = { version = "0.20", default-features = false, features = [
|
rodio = { version = "0.20", default-features = false, features = [
|
||||||
"wasm-bindgen",
|
"wasm-bindgen",
|
||||||
] }
|
] }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_color"
|
name = "bevy_color"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Types for representing and manipulating color values"
|
description = "Types for representing and manipulating color values"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,10 +10,10 @@ keywords = ["bevy", "color"]
|
|||||||
rust-version = "1.85.0"
|
rust-version = "1.85.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false, features = [
|
||||||
"curve",
|
"curve",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true }
|
||||||
bytemuck = { version = "1", features = ["derive"] }
|
bytemuck = { version = "1", features = ["derive"] }
|
||||||
serde = { version = "1.0", features = [
|
serde = { version = "1.0", features = [
|
||||||
"derive",
|
"derive",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_core_pipeline"
|
name = "bevy_core_pipeline"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
authors = [
|
authors = [
|
||||||
"Bevy Contributors <bevyengine@gmail.com>",
|
"Bevy Contributors <bevyengine@gmail.com>",
|
||||||
@ -22,20 +22,20 @@ smaa_luts = ["bevy_render/ktx2", "bevy_image/ktx2", "bevy_image/zstd"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_derive"
|
name = "bevy_derive"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides derive implementations for Bevy Engine"
|
description = "Provides derive implementations for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0" }
|
||||||
|
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_dev_tools"
|
name = "bevy_dev_tools"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Collection of developer tools for the Bevy Engine"
|
description = "Collection of developer tools for the Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -13,21 +13,21 @@ bevy_ci_testing = ["serde", "ron"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5" }
|
bevy_input = { path = "../bevy_input", version = "0.16.0" }
|
||||||
bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.5" }
|
bevy_picking = { path = "../bevy_picking", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
|
bevy_time = { path = "../bevy_time", version = "0.16.0" }
|
||||||
bevy_text = { path = "../bevy_text", version = "0.16.0-rc.5" }
|
bevy_text = { path = "../bevy_text", version = "0.16.0" }
|
||||||
bevy_ui = { path = "../bevy_ui", version = "0.16.0-rc.5" }
|
bevy_ui = { path = "../bevy_ui", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_state = { path = "../bevy_state", version = "0.16.0-rc.5" }
|
bevy_state = { path = "../bevy_state", version = "0.16.0" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_diagnostic"
|
name = "bevy_diagnostic"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides diagnostic functionality for Bevy Engine"
|
description = "Provides diagnostic functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -56,14 +56,14 @@ critical-section = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5", default-features = false }
|
bevy_time = { path = "../bevy_time", version = "0.16.0", default-features = false }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_dylib"
|
name = "bevy_dylib"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Force the Bevy Engine to be dynamically linked for faster linking"
|
description = "Force the Bevy Engine to be dynamically linked for faster linking"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
|||||||
crate-type = ["dylib"]
|
crate-type = ["dylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_internal = { path = "../bevy_internal", version = "0.16.0-rc.5", default-features = false }
|
bevy_internal = { path = "../bevy_internal", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_ecs"
|
name = "bevy_ecs"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Bevy Engine's entity component system"
|
description = "Bevy Engine's entity component system"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -96,16 +96,16 @@ critical-section = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.5" }
|
bevy_ptr = { path = "../bevy_ptr", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [
|
||||||
"smallvec",
|
"smallvec",
|
||||||
], default-features = false, optional = true }
|
], default-features = false, optional = true }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bevy_ecs_macros = { path = "macros", version = "0.16.0-rc.5" }
|
bevy_ecs_macros = { path = "macros", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_ecs_macros"
|
name = "bevy_ecs_macros"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
description = "Bevy ECS Macros"
|
description = "Bevy ECS Macros"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0" }
|
||||||
|
|
||||||
syn = { version = "2.0.99", features = ["full", "extra-traits"] }
|
syn = { version = "2.0.99", features = ["full", "extra-traits"] }
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_encase_derive"
|
name = "bevy_encase_derive"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Bevy derive macro for encase"
|
description = "Bevy derive macro for encase"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0" }
|
||||||
encase_derive_impl = "0.10"
|
encase_derive_impl = "0.10"
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_gilrs"
|
name = "bevy_gilrs"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Gamepad system made using Gilrs for Bevy Engine"
|
description = "Gamepad system made using Gilrs for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,12 +10,12 @@ keywords = ["bevy"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5" }
|
bevy_input = { path = "../bevy_input", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
|
bevy_time = { path = "../bevy_time", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_gizmos"
|
name = "bevy_gizmos"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides gizmos for Bevy Engine"
|
description = "Provides gizmos for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -15,21 +15,21 @@ bevy_render = ["dep:bevy_render", "bevy_core_pipeline"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Bevy
|
# Bevy
|
||||||
bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-rc.5", optional = true }
|
bevy_pbr = { path = "../bevy_pbr", version = "0.16.0", optional = true }
|
||||||
bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.5", optional = true }
|
bevy_sprite = { path = "../bevy_sprite", version = "0.16.0", optional = true }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5", optional = true }
|
bevy_render = { path = "../bevy_render", version = "0.16.0", optional = true }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.5", optional = true }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0", optional = true }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_gizmos_macros = { path = "macros", version = "0.16.0-rc.5" }
|
bevy_gizmos_macros = { path = "macros", version = "0.16.0" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
|
bevy_time = { path = "../bevy_time", version = "0.16.0" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
bytemuck = "1.0"
|
bytemuck = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_gizmos_macros"
|
name = "bevy_gizmos_macros"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Derive implementations for bevy_gizmos"
|
description = "Derive implementations for bevy_gizmos"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -13,7 +13,7 @@ proc-macro = true
|
|||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0" }
|
||||||
|
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_gltf"
|
name = "bevy_gltf"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Bevy Engine GLTF loading"
|
description = "Bevy Engine GLTF loading"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -19,25 +19,25 @@ pbr_specular_textures = ["bevy_pbr/pbr_specular_textures"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_animation = { path = "../bevy_animation", version = "0.16.0-rc.5", optional = true }
|
bevy_animation = { path = "../bevy_animation", version = "0.16.0", optional = true }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.5" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.5" }
|
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0" }
|
||||||
bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-rc.5" }
|
bevy_pbr = { path = "../bevy_pbr", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_scene = { path = "../bevy_scene", version = "0.16.0-rc.5", features = [
|
bevy_scene = { path = "../bevy_scene", version = "0.16.0", features = [
|
||||||
"bevy_render",
|
"bevy_render",
|
||||||
] }
|
] }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
@ -67,7 +67,7 @@ smallvec = "1.11"
|
|||||||
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5" }
|
bevy_log = { path = "../bevy_log", version = "0.16.0" }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_image"
|
name = "bevy_image"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides image types for Bevy Engine"
|
description = "Provides image types for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -40,16 +40,16 @@ zstd = ["ruzstd"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5", features = [
|
bevy_color = { path = "../bevy_color", version = "0.16.0", features = [
|
||||||
"serialize",
|
"serialize",
|
||||||
"wgpu-types",
|
"wgpu-types",
|
||||||
] }
|
] }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ tracing = { version = "0.1", default-features = false, features = ["std"] }
|
|||||||
half = { version = "2.4.1" }
|
half = { version = "2.4.1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_input"
|
name = "bevy_input"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides input functionality for Bevy Engine"
|
description = "Provides input functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -61,14 +61,14 @@ libm = ["bevy_math/libm"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false }
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [
|
||||||
"glam",
|
"glam",
|
||||||
], default-features = false, optional = true }
|
], default-features = false, optional = true }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1", features = [
|
serde = { version = "1", features = [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_input_focus"
|
name = "bevy_input_focus"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Keyboard focus management"
|
description = "Keyboard focus management"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -60,12 +60,12 @@ libm = ["bevy_math/libm", "bevy_window/libm"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5", default-features = false }
|
bevy_input = { path = "../bevy_input", version = "0.16.0", default-features = false }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false }
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5", default-features = false }
|
bevy_window = { path = "../bevy_window", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [
|
||||||
"glam",
|
"glam",
|
||||||
], default-features = false, optional = true }
|
], default-features = false, optional = true }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_internal"
|
name = "bevy_internal"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature"
|
description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -352,79 +352,79 @@ web = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy (no_std)
|
# bevy (no_std)
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5", default-features = false }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0", default-features = false }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5", default-features = false }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_input = { path = "../bevy_input", version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
"nostd-libm",
|
"nostd-libm",
|
||||||
] }
|
] }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.5", default-features = false }
|
bevy_ptr = { path = "../bevy_ptr", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"smallvec",
|
"smallvec",
|
||||||
] }
|
] }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_time = { path = "../bevy_time", version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0", default-features = false, features = [
|
||||||
"bevy-support",
|
"bevy-support",
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
# bevy (std required)
|
# bevy (std required)
|
||||||
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5", optional = true }
|
bevy_log = { path = "../bevy_log", version = "0.16.0", optional = true }
|
||||||
|
|
||||||
# bevy (optional)
|
# bevy (optional)
|
||||||
bevy_a11y = { path = "../bevy_a11y", optional = true, version = "0.16.0-rc.5", features = [
|
bevy_a11y = { path = "../bevy_a11y", optional = true, version = "0.16.0", features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_animation = { path = "../bevy_animation", optional = true, version = "0.16.0-rc.5" }
|
bevy_animation = { path = "../bevy_animation", optional = true, version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", optional = true, version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", optional = true, version = "0.16.0" }
|
||||||
bevy_audio = { path = "../bevy_audio", optional = true, version = "0.16.0-rc.5" }
|
bevy_audio = { path = "../bevy_audio", optional = true, version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", optional = true, version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_color = { path = "../bevy_color", optional = true, version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.16.0-rc.5" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.16.0" }
|
||||||
bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.16.0-rc.5" }
|
bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.16.0" }
|
||||||
bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.16.0-rc.5" }
|
bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.16.0" }
|
||||||
bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.16.0-rc.5", default-features = false }
|
bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.16.0", default-features = false }
|
||||||
bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.16.0-rc.5" }
|
bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", optional = true, version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", optional = true, version = "0.16.0" }
|
||||||
bevy_input_focus = { path = "../bevy_input_focus", optional = true, version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_input_focus = { path = "../bevy_input_focus", optional = true, version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.16.0-rc.5" }
|
bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.16.0" }
|
||||||
bevy_picking = { path = "../bevy_picking", optional = true, version = "0.16.0-rc.5" }
|
bevy_picking = { path = "../bevy_picking", optional = true, version = "0.16.0" }
|
||||||
bevy_remote = { path = "../bevy_remote", optional = true, version = "0.16.0-rc.5" }
|
bevy_remote = { path = "../bevy_remote", optional = true, version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", optional = true, version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", optional = true, version = "0.16.0" }
|
||||||
bevy_scene = { path = "../bevy_scene", optional = true, version = "0.16.0-rc.5" }
|
bevy_scene = { path = "../bevy_scene", optional = true, version = "0.16.0" }
|
||||||
bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.16.0-rc.5" }
|
bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.16.0" }
|
||||||
bevy_state = { path = "../bevy_state", optional = true, version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_state = { path = "../bevy_state", optional = true, version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_app",
|
"bevy_app",
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_text = { path = "../bevy_text", optional = true, version = "0.16.0-rc.5" }
|
bevy_text = { path = "../bevy_text", optional = true, version = "0.16.0" }
|
||||||
bevy_ui = { path = "../bevy_ui", optional = true, version = "0.16.0-rc.5" }
|
bevy_ui = { path = "../bevy_ui", optional = true, version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", optional = true, version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_window = { path = "../bevy_window", optional = true, version = "0.16.0", default-features = false, features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.16.0-rc.5", default-features = false }
|
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_log"
|
name = "bevy_log"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides logging for Bevy Engine"
|
description = "Provides logging for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -14,9 +14,9 @@ trace_tracy_memory = ["dep:tracy-client"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
tracing-subscriber = { version = "0.3.1", features = [
|
tracing-subscriber = { version = "0.3.1", features = [
|
||||||
@ -39,7 +39,7 @@ android_log-sys = "0.3.0"
|
|||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
tracing-wasm = "0.2.1"
|
tracing-wasm = "0.2.1"
|
||||||
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_macro_utils"
|
name = "bevy_macro_utils"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A collection of utils for Bevy Engine"
|
description = "A collection of utils for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_math"
|
name = "bevy_math"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides math functionality for Bevy Engine"
|
description = "Provides math functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -25,7 +25,7 @@ approx = { version = "0.5", default-features = false, optional = true }
|
|||||||
rand = { version = "0.8", default-features = false, optional = true }
|
rand = { version = "0.8", default-features = false, optional = true }
|
||||||
rand_distr = { version = "0.4.3", optional = true }
|
rand_distr = { version = "0.4.3", optional = true }
|
||||||
smallvec = { version = "1.11" }
|
smallvec = { version = "1.11" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"glam",
|
"glam",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
variadics_please = "1.1"
|
variadics_please = "1.1"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_mesh"
|
name = "bevy_mesh"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides mesh types for Bevy Engine"
|
description = "Provides mesh types for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,16 +10,16 @@ keywords = ["bevy"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.16.0-rc.5" }
|
bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_mikktspace"
|
name = "bevy_mikktspace"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
authors = [
|
authors = [
|
||||||
"Benjamin Wasty <benny.wasty@gmail.com>",
|
"Benjamin Wasty <benny.wasty@gmail.com>",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_pbr"
|
name = "bevy_pbr"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Adds PBR rendering to Bevy Engine"
|
description = "Adds PBR rendering to Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -31,22 +31,22 @@ meshlet_processor = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.5" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", optional = true }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", optional = true }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_picking"
|
name = "bevy_picking"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides screen picking functionality for Bevy Engine"
|
description = "Provides screen picking functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -13,20 +13,20 @@ bevy_mesh_picking_backend = ["dep:bevy_mesh", "dep:crossbeam-channel"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5" }
|
bevy_input = { path = "../bevy_input", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.5", optional = true }
|
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0", optional = true }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
|
bevy_time = { path = "../bevy_time", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_platform"
|
name = "bevy_platform"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides common platform agnostic APIs, as well as platform-specific features for Bevy Engine"
|
description = "Provides common platform agnostic APIs, as well as platform-specific features for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_ptr"
|
name = "bevy_ptr"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Utilities for working with untyped pointers in a more safe way"
|
description = "Utilities for working with untyped pointers in a more safe way"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_reflect"
|
name = "bevy_reflect"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Dynamically interact with rust types"
|
description = "Dynamically interact with rust types"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -75,12 +75,12 @@ web = ["bevy_platform/web", "uuid?/js"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_reflect_derive = { path = "derive", version = "0.16.0-rc.5" }
|
bevy_reflect_derive = { path = "derive", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.5" }
|
bevy_ptr = { path = "../bevy_ptr", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_reflect_derive"
|
name = "bevy_reflect_derive"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Derive implementations for bevy_reflect"
|
description = "Derive implementations for bevy_reflect"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -19,7 +19,7 @@ documentation = []
|
|||||||
functions = []
|
functions = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0" }
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_remote"
|
name = "bevy_remote"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "The Bevy Remote Protocol"
|
description = "The Bevy Remote Protocol"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -14,15 +14,15 @@ http = ["dep:async-io", "dep:smol-hyper"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", features = [
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", features = [
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_render"
|
name = "bevy_render"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides rendering functionality for Bevy Engine"
|
description = "Provides rendering functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -50,27 +50,27 @@ detailed_trace = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5", features = [
|
bevy_color = { path = "../bevy_color", version = "0.16.0", features = [
|
||||||
"serialize",
|
"serialize",
|
||||||
"wgpu-types",
|
"wgpu-types",
|
||||||
] }
|
] }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.5" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.16.0-rc.5" }
|
bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render_macros = { path = "macros", version = "0.16.0-rc.5" }
|
bevy_render_macros = { path = "macros", version = "0.16.0" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.16.0-rc.5" }
|
bevy_time = { path = "../bevy_time", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.5" }
|
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
@ -139,16 +139,16 @@ web-sys = { version = "0.3.67", features = [
|
|||||||
] }
|
] }
|
||||||
wasm-bindgen = "0.2"
|
wasm-bindgen = "0.2"
|
||||||
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_render_macros"
|
name = "bevy_render_macros"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Derive implementations for bevy_render"
|
description = "Derive implementations for bevy_render"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0" }
|
||||||
|
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_scene"
|
name = "bevy_scene"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides scene functionality for Bevy Engine"
|
description = "Provides scene functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -19,15 +19,15 @@ serialize = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5", optional = true }
|
bevy_render = { path = "../bevy_render", version = "0.16.0", optional = true }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_sprite"
|
name = "bevy_sprite"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides sprite functionality for Bevy Engine"
|
description = "Provides sprite functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -15,21 +15,21 @@ webgpu = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.5" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.5", optional = true }
|
bevy_picking = { path = "../bevy_picking", version = "0.16.0", optional = true }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5", optional = true }
|
bevy_window = { path = "../bevy_window", version = "0.16.0", optional = true }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_state"
|
name = "bevy_state"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Finite state machines for Bevy"
|
description = "Finite state machines for Bevy"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -48,12 +48,12 @@ critical-section = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_state_macros = { path = "macros", version = "0.16.0-rc.5" }
|
bevy_state_macros = { path = "macros", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false }
|
||||||
variadics_please = "1.1"
|
variadics_please = "1.1"
|
||||||
|
|
||||||
# other
|
# other
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_state_macros"
|
name = "bevy_state_macros"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
description = "Macros for bevy_state"
|
description = "Macros for bevy_state"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.5" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0" }
|
||||||
|
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_tasks"
|
name = "bevy_tasks"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A task executor for Bevy Engine"
|
description = "A task executor for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -42,7 +42,7 @@ web = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_text"
|
name = "bevy_text"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides text functionality for Bevy Engine"
|
description = "Provides text functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -13,21 +13,21 @@ default_font = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5" }
|
bevy_log = { path = "../bevy_log", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.5" }
|
bevy_sprite = { path = "../bevy_sprite", version = "0.16.0" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_time"
|
name = "bevy_time"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides time functionality for Bevy Engine"
|
description = "Provides time functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -48,10 +48,10 @@ critical-section = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
crossbeam-channel = { version = "0.5.0", default-features = false, features = [
|
crossbeam-channel = { version = "0.5.0", default-features = false, features = [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_transform"
|
name = "bevy_transform"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides transform functionality for Bevy Engine"
|
description = "Provides transform functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,13 +10,13 @@ keywords = ["bevy"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_log = { path = "../bevy_log", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false }
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false, optional = true }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, optional = true }
|
||||||
serde = { version = "1", default-features = false, features = [
|
serde = { version = "1", default-features = false, features = [
|
||||||
"derive",
|
"derive",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
@ -24,8 +24,8 @@ thiserror = { version = "2", default-features = false }
|
|||||||
derive_more = { version = "1", default-features = false, features = ["from"] }
|
derive_more = { version = "1", default-features = false, features = ["from"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false, features = [
|
||||||
"approx",
|
"approx",
|
||||||
] }
|
] }
|
||||||
approx = "0.5.1"
|
approx = "0.5.1"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_ui"
|
name = "bevy_ui"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A custom ECS-driven UI framework built specifically for Bevy Engine"
|
description = "A custom ECS-driven UI framework built specifically for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -10,25 +10,25 @@ keywords = ["bevy"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-rc.5" }
|
bevy_a11y = { path = "../bevy_a11y", version = "0.16.0" }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5" }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.16.0-rc.5" }
|
bevy_color = { path = "../bevy_color", version = "0.16.0" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.5" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5" }
|
bevy_image = { path = "../bevy_image", version = "0.16.0" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5" }
|
bevy_input = { path = "../bevy_input", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.16.0-rc.5" }
|
bevy_render = { path = "../bevy_render", version = "0.16.0" }
|
||||||
bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.5" }
|
bevy_sprite = { path = "../bevy_sprite", version = "0.16.0" }
|
||||||
bevy_text = { path = "../bevy_text", version = "0.16.0-rc.5" }
|
bevy_text = { path = "../bevy_text", version = "0.16.0" }
|
||||||
bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.5", optional = true }
|
bevy_picking = { path = "../bevy_picking", version = "0.16.0", optional = true }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.5" }
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_utils"
|
name = "bevy_utils"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A collection of utils for Bevy Engine"
|
description = "A collection of utils for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -31,7 +31,7 @@ alloc = ["bevy_platform/alloc"]
|
|||||||
critical-section = ["bevy_platform/critical-section"]
|
critical-section = ["bevy_platform/critical-section"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
thread_local = { version = "1.0", optional = true }
|
thread_local = { version = "1.0", optional = true }
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_window"
|
name = "bevy_window"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Provides windowing functionality for Bevy Engine"
|
description = "Provides windowing functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -50,16 +50,16 @@ libm = ["bevy_math/libm"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5", default-features = false }
|
bevy_input = { path = "../bevy_input", version = "0.16.0", default-features = false }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5", default-features = false }
|
bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"glam",
|
"glam",
|
||||||
"smol_str",
|
"smol_str",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5", default-features = false }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false }
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1.0", features = [
|
serde = { version = "1.0", features = [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_winit"
|
name = "bevy_winit"
|
||||||
version = "0.16.0-rc.5"
|
version = "0.16.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A winit window and input backend for Bevy Engine"
|
description = "A winit window and input backend for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
@ -28,25 +28,25 @@ custom_cursor = ["bevy_image", "bevy_asset", "bytemuck", "wgpu-types"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-rc.5" }
|
bevy_a11y = { path = "../bevy_a11y", version = "0.16.0" }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.5" }
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.5" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.16.0-rc.5" }
|
bevy_input = { path = "../bevy_input", version = "0.16.0" }
|
||||||
bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.0-rc.5" }
|
bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.0" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.16.0-rc.5" }
|
bevy_log = { path = "../bevy_log", version = "0.16.0" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.16.0-rc.5" }
|
bevy_math = { path = "../bevy_math", version = "0.16.0" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-rc.5" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.5" }
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
# bevy optional
|
# bevy optional
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.5", optional = true }
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0", optional = true }
|
||||||
bevy_image = { path = "../bevy_image", version = "0.16.0-rc.5", optional = true }
|
bevy_image = { path = "../bevy_image", version = "0.16.0", optional = true }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
# feature rwh_06 refers to window_raw_handle@v0.6
|
# feature rwh_06 refers to window_raw_handle@v0.6
|
||||||
@ -68,16 +68,16 @@ wasm-bindgen = { version = "0.2" }
|
|||||||
web-sys = "0.3"
|
web-sys = "0.3"
|
||||||
crossbeam-channel = "0.5"
|
crossbeam-channel = "0.5"
|
||||||
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.5", default-features = false, features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [
|
||||||
"web",
|
"web",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user