diff --git a/Cargo.toml b/Cargo.toml index c059716f2c..9d214d4c1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -527,12 +527,12 @@ libm = ["bevy_internal/libm"] web = ["bevy_internal/web"] [dependencies] -bevy_internal = { path = "crates/bevy_internal", version = "0.16.0-rc.2", default-features = false } +bevy_internal = { path = "crates/bevy_internal", version = "0.16.0-rc.3", default-features = false } tracing = { version = "0.1", default-features = false, optional = true } # Wasm does not support dynamic linking. [target.'cfg(not(target_family = "wasm"))'.dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-rc.2", default-features = false, optional = true } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.0-rc.3", default-features = false, optional = true } [dev-dependencies] rand = "0.8.0" @@ -542,14 +542,14 @@ flate2 = "1.0" serde = { version = "1", features = ["derive"] } serde_json = "1" bytemuck = "1.7" -bevy_render = { path = "crates/bevy_render", version = "0.16.0-rc.2", default-features = false } +bevy_render = { path = "crates/bevy_render", version = "0.16.0-rc.3", 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. -bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_state = { path = "crates/bevy_state", version = "0.16.0-rc.2", default-features = false } -bevy_asset = { path = "crates/bevy_asset", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.0-rc.2", default-features = false } -bevy_image = { path = "crates/bevy_image", version = "0.16.0-rc.2", default-features = false } -bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0-rc.2", default-features = false } +bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_state = { path = "crates/bevy_state", version = "0.16.0-rc.3", default-features = false } +bevy_asset = { path = "crates/bevy_asset", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.0-rc.3", default-features = false } +bevy_image = { path = "crates/bevy_image", version = "0.16.0-rc.3", default-features = false } +bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0-rc.3", default-features = false } # Needed to poll Task examples futures-lite = "2.0.1" async-std = "1.13" diff --git a/crates/bevy_a11y/Cargo.toml b/crates/bevy_a11y/Cargo.toml index fcab0980f4..19513642a2 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_a11y" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides accessibility support for Bevy Engine" homepage = "https://bevyengine.org" @@ -40,10 +40,10 @@ critical-section = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, optional = true } # other accesskit = { version = "0.18", default-features = false } diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 5e24f969d9..22e0d7d58a 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,22 +10,22 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", features = [ "petgraph", ] } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 9f7ed100ee..6adb7deb53 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -74,14 +74,14 @@ web = [ [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false } # other downcast-rs = { version = "2", default-features = false } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index bff5a44317..bd47654b4e 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides asset functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -19,15 +19,15 @@ watch = [] trace = [] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset_macros = { path = "macros", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset_macros = { path = "macros", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", features = [ "uuid", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } @@ -53,7 +53,7 @@ uuid = { version = "1.13.1", features = ["v4"] } tracing = { version = "0.1", default-features = false, features = ["std"] } [target.'cfg(target_os = "android")'.dependencies] -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } [target.'cfg(target_arch = "wasm32")'.dependencies] # 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" js-sys = "0.3" uuid = { version = "1.13.1", default-features = false, features = ["js"] } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_asset/macros/Cargo.toml b/crates/bevy_asset/macros/Cargo.toml index 796916aab4..d9f2cb960b 100644 --- a/crates/bevy_asset/macros/Cargo.toml +++ b/crates/bevy_asset/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset_macros" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Derive implementations for bevy_asset" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.3" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 9c4476218e..c253670112 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,13 +10,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } # other 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 = [ "wasm-bindgen", ] } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_color/Cargo.toml b/crates/bevy_color/Cargo.toml index fe3c3ccad9..7b469099a7 100644 --- a/crates/bevy_color/Cargo.toml +++ b/crates/bevy_color/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_color" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Types for representing and manipulating color values" homepage = "https://bevyengine.org" @@ -10,10 +10,10 @@ keywords = ["bevy", "color"] rust-version = "1.85.0" [dependencies] -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false, features = [ "curve", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, optional = true } bytemuck = { version = "1", features = ["derive"] } serde = { version = "1.0", features = [ "derive", diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index b0faba8b4f..c70888f4c5 100644 --- a/crates/bevy_core_pipeline/Cargo.toml +++ b/crates/bevy_core_pipeline/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core_pipeline" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" authors = [ "Bevy Contributors ", @@ -22,20 +22,20 @@ smaa_luts = ["bevy_render/ktx2", "bevy_image/ktx2", "bevy_image/zstd"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index 6db8faf123..ee14fb0182 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides derive implementations for Bevy Engine" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.3" } quote = "1.0" syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_dev_tools/Cargo.toml b/crates/bevy_dev_tools/Cargo.toml index cb9e6e2427..6cf5aba9f4 100644 --- a/crates/bevy_dev_tools/Cargo.toml +++ b/crates/bevy_dev_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dev_tools" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Collection of developer tools for the Bevy Engine" homepage = "https://bevyengine.org" @@ -13,21 +13,21 @@ bevy_ci_testing = ["serde", "ron"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2" } -bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2" } -bevy_text = { path = "../bevy_text", version = "0.16.0-rc.2" } -bevy_ui = { path = "../bevy_ui", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_state = { path = "../bevy_state", version = "0.16.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3" } +bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3" } +bevy_text = { path = "../bevy_text", version = "0.16.0-rc.3" } +bevy_ui = { path = "../bevy_ui", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_state = { path = "../bevy_state", version = "0.16.0-rc.3" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index a4cbd73b16..b53a0b19a5 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -56,14 +56,14 @@ critical-section = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index f478748185..784fe88724 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Force the Bevy Engine to be dynamically linked for faster linking" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] crate-type = ["dylib"] [dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.16.0-rc.2", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.16.0-rc.3", default-features = false } [lints] workspace = true diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 7216e90896..2be6262053 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -96,16 +96,16 @@ critical-section = [ ] [dependencies] -bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", features = [ +bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", features = [ "smallvec", ], default-features = false, optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } -bevy_ecs_macros = { path = "macros", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_ecs_macros = { path = "macros", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index eff6554b4b..cd8711cc13 100644 --- a/crates/bevy_ecs/macros/Cargo.toml +++ b/crates/bevy_ecs/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs_macros" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" description = "Bevy ECS Macros" edition = "2024" license = "MIT OR Apache-2.0" @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.3" } syn = { version = "2.0.99", features = ["full", "extra-traits"] } quote = "1.0" diff --git a/crates/bevy_encase_derive/Cargo.toml b/crates/bevy_encase_derive/Cargo.toml index 363088c4e5..347230db5f 100644 --- a/crates/bevy_encase_derive/Cargo.toml +++ b/crates/bevy_encase_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_encase_derive" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Bevy derive macro for encase" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.0-rc.3" } encase_derive_impl = "0.10" [lints] diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index dd47028896..970fe3ace9 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,12 +10,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_gizmos/Cargo.toml b/crates/bevy_gizmos/Cargo.toml index de3e5565bf..b4804928a2 100644 --- a/crates/bevy_gizmos/Cargo.toml +++ b/crates/bevy_gizmos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides gizmos for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,21 +15,21 @@ bevy_render = ["dep:bevy_render", "bevy_core_pipeline"] [dependencies] # Bevy -bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-rc.2", optional = true } -bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_gizmos_macros = { path = "macros", version = "0.16.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2" } +bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-rc.3", optional = true } +bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_gizmos_macros = { path = "macros", version = "0.16.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3" } # other bytemuck = "1.0" diff --git a/crates/bevy_gizmos/macros/Cargo.toml b/crates/bevy_gizmos/macros/Cargo.toml index 71212145c0..38069d4ab9 100644 --- a/crates/bevy_gizmos/macros/Cargo.toml +++ b/crates/bevy_gizmos/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos_macros" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Derive implementations for bevy_gizmos" homepage = "https://bevyengine.org" @@ -13,7 +13,7 @@ proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.3" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 08bd5f912c..ae938cc294 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" @@ -19,25 +19,25 @@ pbr_specular_textures = ["bevy_pbr/pbr_specular_textures"] [dependencies] # bevy -bevy_animation = { path = "../bevy_animation", version = "0.16.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.2" } -bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_scene = { path = "../bevy_scene", version = "0.16.0-rc.2", features = [ +bevy_animation = { path = "../bevy_animation", version = "0.16.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.3" } +bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_scene = { path = "../bevy_scene", version = "0.16.0-rc.3", features = [ "bevy_render", ] } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } @@ -67,7 +67,7 @@ smallvec = "1.11" tracing = { version = "0.1", default-features = false, features = ["std"] } [dev-dependencies] -bevy_log = { path = "../bevy_log", version = "0.16.0-rc.2" } +bevy_log = { path = "../bevy_log", version = "0.16.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_image/Cargo.toml b/crates/bevy_image/Cargo.toml index 601788afa7..5f5c4b02bf 100644 --- a/crates/bevy_image/Cargo.toml +++ b/crates/bevy_image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_image" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides image types for Bevy Engine" homepage = "https://bevyengine.org" @@ -44,16 +44,16 @@ zstd = ["ruzstd"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3", features = [ "serialize", "wgpu-types", ] } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } @@ -80,7 +80,7 @@ tracing = { version = "0.1", default-features = false, features = ["std"] } half = { version = "2.4.1" } [dev-dependencies] -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 84ba8c6962..bcac6bb7d7 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -61,14 +61,14 @@ libm = ["bevy_math/libm"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", features = [ "glam", ], default-features = false, optional = true } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false } # other serde = { version = "1", features = [ diff --git a/crates/bevy_input_focus/Cargo.toml b/crates/bevy_input_focus/Cargo.toml index 58a1fbec5d..58ca9ae878 100644 --- a/crates/bevy_input_focus/Cargo.toml +++ b/crates/bevy_input_focus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input_focus" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Keyboard focus management" homepage = "https://bevyengine.org" @@ -60,12 +60,12 @@ libm = ["bevy_math/libm", "bevy_window/libm"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2", default-features = false } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3", default-features = false } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", features = [ "glam", ], default-features = false, optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 5cedf9ef3e..5508ee6961 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature" homepage = "https://bevyengine.org" @@ -352,79 +352,79 @@ web = [ [dependencies] # bevy (no_std) -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, features = [ "bevy_reflect", ] } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2", default-features = false } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3", default-features = false } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false, features = [ "bevy_reflect", ] } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3", default-features = false, features = [ "bevy_reflect", ] } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false, features = [ -"bevy_reflect", -"nostd-libm", +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false, features = [ + "bevy_reflect", + "nostd-libm", ] } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } -bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "smallvec", ] } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3", default-features = false, features = [ "bevy_reflect", ] } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3", default-features = false, features = [ "bevy-support", "bevy_reflect", ] } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false } # bevy (std required) -bevy_log = { path = "../bevy_log", version = "0.16.0-rc.2", optional = true } +bevy_log = { path = "../bevy_log", version = "0.16.0-rc.3", optional = true } # bevy (optional) -bevy_a11y = { path = "../bevy_a11y", optional = true, version = "0.16.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", optional = true, version = "0.16.0-rc.3", features = [ "bevy_reflect", ] } -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.16.0-rc.2" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", optional = true, version = "0.16.0-rc.2", default-features = false, features = [ +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.16.0-rc.3" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", optional = true, version = "0.16.0-rc.3", default-features = false, features = [ "alloc", "bevy_reflect", ] } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.16.0-rc.2" } -bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.16.0-rc.2" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.16.0-rc.2" } -bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.16.0-rc.2", default-features = false } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", optional = true, version = "0.16.0-rc.2" } -bevy_input_focus = { path = "../bevy_input_focus", optional = true, version = "0.16.0-rc.2", default-features = false, features = [ +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.16.0-rc.3" } +bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.16.0-rc.3" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.16.0-rc.3" } +bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.16.0-rc.3", default-features = false } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", optional = true, version = "0.16.0-rc.3" } +bevy_input_focus = { path = "../bevy_input_focus", optional = true, version = "0.16.0-rc.3", default-features = false, features = [ "bevy_reflect", ] } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.16.0-rc.2" } -bevy_picking = { path = "../bevy_picking", optional = true, version = "0.16.0-rc.2" } -bevy_remote = { path = "../bevy_remote", optional = true, version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.16.0-rc.2" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.16.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.16.0-rc.2" } -bevy_state = { path = "../bevy_state", optional = true, version = "0.16.0-rc.2", default-features = false, features = [ +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.16.0-rc.3" } +bevy_picking = { path = "../bevy_picking", optional = true, version = "0.16.0-rc.3" } +bevy_remote = { path = "../bevy_remote", optional = true, version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.16.0-rc.3" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.16.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.16.0-rc.3" } +bevy_state = { path = "../bevy_state", optional = true, version = "0.16.0-rc.3", default-features = false, features = [ "bevy_app", "bevy_reflect", ] } -bevy_text = { path = "../bevy_text", optional = true, version = "0.16.0-rc.2" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", optional = true, version = "0.16.0-rc.2", default-features = false, features = [ +bevy_text = { path = "../bevy_text", optional = true, version = "0.16.0-rc.3" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", optional = true, version = "0.16.0-rc.3", default-features = false, features = [ "bevy_reflect", ] } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.16.0-rc.2", default-features = false } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.16.0-rc.3", default-features = false } [lints] workspace = true diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 1cb90ff84b..10d698d167 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides logging for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,9 +14,9 @@ trace_tracy_memory = ["dep:tracy-client"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } # other tracing-subscriber = { version = "0.3.1", features = [ @@ -39,7 +39,7 @@ android_log-sys = "0.3.0" [target.'cfg(target_arch = "wasm32")'.dependencies] tracing-wasm = "0.2.1" # 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.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index f990396665..76dda2b0b1 100644 --- a/crates/bevy_macro_utils/Cargo.toml +++ b/crates/bevy_macro_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_macro_utils" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index c9269948e2..fab5b50a4e 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides math functionality for Bevy Engine" 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_distr = { version = "0.4.3", optional = true } smallvec = { version = "1.11" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "glam", ], optional = true } variadics_please = "1.1" diff --git a/crates/bevy_mesh/Cargo.toml b/crates/bevy_mesh/Cargo.toml index 3689eff57c..7deb1f71b1 100644 --- a/crates/bevy_mesh/Cargo.toml +++ b/crates/bevy_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mesh" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides mesh types for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,16 +10,16 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_mikktspace/Cargo.toml b/crates/bevy_mikktspace/Cargo.toml index 15f8a43c26..07aaae83a3 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mikktspace" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" authors = [ "Benjamin Wasty ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 44a68c1b96..f850b3e337 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Adds PBR rendering to Bevy Engine" homepage = "https://bevyengine.org" @@ -31,22 +31,22 @@ meshlet_processor = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_picking/Cargo.toml b/crates/bevy_picking/Cargo.toml index 6034c51eda..c2ccec7363 100644 --- a/crates/bevy_picking/Cargo.toml +++ b/crates/bevy_picking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_picking" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides screen picking functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,20 +13,20 @@ bevy_mesh_picking_backend = ["dep:bevy_mesh", "dep:crossbeam-channel"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.2", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.3", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_platform_support/Cargo.toml b/crates/bevy_platform_support/Cargo.toml index c0ff25b5b1..5efadec74d 100644 --- a/crates/bevy_platform_support/Cargo.toml +++ b/crates/bevy_platform_support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_platform_support" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Platform compatibility support for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index b5593e24d4..54f5e36fb3 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ptr" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Utilities for working with untyped pointers in a more safe way" homepage = "https://bevyengine.org" diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 437b13aac7..12f973deac 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -75,12 +75,12 @@ web = ["bevy_platform_support/web", "uuid?/js"] [dependencies] # bevy -bevy_reflect_derive = { path = "derive", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect_derive = { path = "derive", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } -bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_ptr = { path = "../bevy_ptr", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", "serialize", ] } diff --git a/crates/bevy_reflect/derive/Cargo.toml b/crates/bevy_reflect/derive/Cargo.toml index 368b448130..98fd858098 100644 --- a/crates/bevy_reflect/derive/Cargo.toml +++ b/crates/bevy_reflect/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect_derive" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Derive implementations for bevy_reflect" homepage = "https://bevyengine.org" @@ -19,7 +19,7 @@ documentation = [] functions = [] [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.3" } proc-macro2 = "1.0" quote = "1.0" syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_remote/Cargo.toml b/crates/bevy_remote/Cargo.toml index 1e1e0bc215..42e220cfe3 100644 --- a/crates/bevy_remote/Cargo.toml +++ b/crates/bevy_remote/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_remote" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "The Bevy Remote Protocol" homepage = "https://bevyengine.org" @@ -14,15 +14,15 @@ http = ["dep:async-io", "dep:smol-hyper"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", features = [ "serialize", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 640b7078d3..a18252a995 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -50,27 +50,27 @@ detailed_trace = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3", features = [ "serialize", "wgpu-types", ] } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render_macros = { path = "macros", version = "0.16.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render_macros = { path = "macros", version = "0.16.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } @@ -139,16 +139,16 @@ web-sys = { version = "0.3.67", features = [ ] } wasm-bindgen = "0.2" # 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.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_render/macros/Cargo.toml b/crates/bevy_render/macros/Cargo.toml index 58dacababa..52761b9f93 100644 --- a/crates/bevy_render/macros/Cargo.toml +++ b/crates/bevy_render/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render_macros" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Derive implementations for bevy_render" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.3" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 62ab9d5999..b7addfc582 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -19,15 +19,15 @@ serialize = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2", optional = true } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3", optional = true } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 3fc35c8fd3..9a0d0d9be9 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides sprite functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,21 +15,21 @@ webgpu = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.2", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2", optional = true } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.3", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3", optional = true } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_state/Cargo.toml b/crates/bevy_state/Cargo.toml index 1c04495797..2476d8a47b 100644 --- a/crates/bevy_state/Cargo.toml +++ b/crates/bevy_state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_state" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Finite state machines for Bevy" homepage = "https://bevyengine.org" @@ -48,12 +48,12 @@ critical-section = [ [dependencies] # bevy -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_state_macros = { path = "macros", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_state_macros = { path = "macros", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false } variadics_please = "1.1" # other diff --git a/crates/bevy_state/macros/Cargo.toml b/crates/bevy_state/macros/Cargo.toml index c63ed90f70..9df2258f68 100644 --- a/crates/bevy_state/macros/Cargo.toml +++ b/crates/bevy_state/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_state_macros" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" description = "Macros for bevy_state" edition = "2024" license = "MIT OR Apache-2.0" @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-rc.3" } syn = { version = "2.0", features = ["full"] } quote = "1.0" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 55b68a4888..a68fa4bfd7 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "A task executor for Bevy Engine" homepage = "https://bevyengine.org" @@ -42,7 +42,7 @@ web = [ ] [dependencies] -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "alloc", ] } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 5ba94aea47..37ab00a5e9 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,21 +13,21 @@ default_font = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 31920498a1..9df415dfa4 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_time" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -52,10 +52,10 @@ critical-section = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false } # other crossbeam-channel = { version = "0.5.0", default-features = false, features = [ diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 5594ec5882..e511705feb 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides transform functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,13 +10,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_log = { path = "../bevy_log", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false, optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_log = { path = "../bevy_log", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false, optional = true } serde = { version = "1", default-features = false, features = [ "derive", ], optional = true } @@ -24,8 +24,8 @@ thiserror = { version = "2", default-features = false } derive_more = { version = "1", default-features = false, features = ["from"] } [dev-dependencies] -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false, features = [ "approx", ] } approx = "0.5.1" diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index b6da86fa29..7a47744d36 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "A custom ECS-driven UI framework built specifically for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,25 +10,25 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.16.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.16.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.2" } -bevy_text = { path = "../bevy_text", version = "0.16.0-rc.2" } -bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.16.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.16.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", version = "0.16.0-rc.3" } +bevy_text = { path = "../bevy_text", version = "0.16.0-rc.3" } +bevy_picking = { path = "../bevy_picking", version = "0.16.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index d0fd67418a..546999ad94 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" @@ -31,7 +31,7 @@ alloc = ["bevy_platform_support/alloc"] critical-section = ["bevy_platform_support/critical-section"] [dependencies] -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false } thread_local = { version = "1.0", optional = true } diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index 709d5ffdd6..71d6d068f9 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -50,16 +50,16 @@ libm = ["bevy_math/libm"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2", default-features = false } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2", default-features = false } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3", default-features = false } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3", default-features = false } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "glam", "smol_str", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2", default-features = false } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3", default-features = false } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false } # other serde = { version = "1.0", features = [ diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index c684193695..143d480522 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.16.0-rc.2" +version = "0.16.0-rc.3" edition = "2024" description = "A winit window and input backend for Bevy Engine" homepage = "https://bevyengine.org" @@ -28,25 +28,25 @@ custom_cursor = ["bevy_image", "bevy_asset", "bytemuck", "wgpu-types"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.16.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.16.0-rc.2" } -bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.16.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.16.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.16.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2" } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.16.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.16.0-rc.3" } +bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.16.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.16.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.16.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.16.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3" } +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "std", ] } # bevy optional -bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.2", optional = true } -bevy_image = { path = "../bevy_image", version = "0.16.0-rc.2", optional = true } +bevy_asset = { path = "../bevy_asset", version = "0.16.0-rc.3", optional = true } +bevy_image = { path = "../bevy_image", version = "0.16.0-rc.3", optional = true } # other # feature rwh_06 refers to window_raw_handle@v0.6 @@ -68,16 +68,16 @@ wasm-bindgen = { version = "0.2" } web-sys = "0.3" crossbeam-channel = "0.5" # 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.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_platform_support = { path = "../bevy_platform_support", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.2", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-rc.3", default-features = false, features = [ "web", ] }