From 383b3510455c431f34cf3f2c6e3c2d40eddce744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Sat, 31 May 2025 00:18:34 +0200 Subject: [PATCH] chore: Release --- Cargo.toml | 20 +++---- crates/bevy_a11y/Cargo.toml | 10 ++-- crates/bevy_animation/Cargo.toml | 30 +++++------ crates/bevy_app/Cargo.toml | 14 ++--- crates/bevy_asset/Cargo.toml | 24 ++++----- crates/bevy_asset/macros/Cargo.toml | 4 +- crates/bevy_audio/Cargo.toml | 20 +++---- crates/bevy_color/Cargo.toml | 6 +-- crates/bevy_core_pipeline/Cargo.toml | 30 +++++------ crates/bevy_derive/Cargo.toml | 4 +- crates/bevy_dev_tools/Cargo.toml | 32 +++++------ crates/bevy_diagnostic/Cargo.toml | 14 ++--- crates/bevy_dylib/Cargo.toml | 4 +- crates/bevy_ecs/Cargo.toml | 14 ++--- crates/bevy_ecs/macros/Cargo.toml | 4 +- crates/bevy_encase_derive/Cargo.toml | 4 +- crates/bevy_gilrs/Cargo.toml | 14 ++--- crates/bevy_gizmos/Cargo.toml | 32 +++++------ crates/bevy_gizmos/macros/Cargo.toml | 4 +- crates/bevy_gltf/Cargo.toml | 38 +++++++------- crates/bevy_image/Cargo.toml | 18 +++---- crates/bevy_input/Cargo.toml | 14 ++--- crates/bevy_input_focus/Cargo.toml | 14 ++--- crates/bevy_internal/Cargo.toml | 76 +++++++++++++-------------- crates/bevy_log/Cargo.toml | 10 ++-- crates/bevy_macro_utils/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 4 +- crates/bevy_mesh/Cargo.toml | 22 ++++---- crates/bevy_mikktspace/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 34 ++++++------ crates/bevy_picking/Cargo.toml | 30 +++++------ crates/bevy_platform/Cargo.toml | 2 +- crates/bevy_ptr/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 10 ++-- crates/bevy_reflect/derive/Cargo.toml | 4 +- crates/bevy_remote/Cargo.toml | 16 +++--- crates/bevy_render/Cargo.toml | 46 ++++++++-------- crates/bevy_render/macros/Cargo.toml | 4 +- crates/bevy_scene/Cargo.toml | 20 +++---- crates/bevy_sprite/Cargo.toml | 32 +++++------ crates/bevy_state/Cargo.toml | 14 ++--- crates/bevy_state/macros/Cargo.toml | 4 +- crates/bevy_tasks/Cargo.toml | 4 +- crates/bevy_text/Cargo.toml | 32 +++++------ crates/bevy_time/Cargo.toml | 10 ++-- crates/bevy_transform/Cargo.toml | 20 +++---- crates/bevy_ui/Cargo.toml | 40 +++++++------- crates/bevy_utils/Cargo.toml | 4 +- crates/bevy_window/Cargo.toml | 16 +++--- crates/bevy_winit/Cargo.toml | 40 +++++++------- 50 files changed, 434 insertions(+), 434 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2a20b53804..788b822688 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.16.0" +version = "0.16.1" 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", default-features = false } +bevy_internal = { path = "crates/bevy_internal", version = "0.16.1", 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", default-features = false, optional = true } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.16.1", 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.0.140" bytemuck = "1.7" -bevy_render = { path = "crates/bevy_render", version = "0.16.0", default-features = false } +bevy_render = { path = "crates/bevy_render", version = "0.16.1", 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", 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", 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", default-features = false } -bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.0", default-features = false } +bevy_ecs = { path = "crates/bevy_ecs", version = "0.16.1", default-features = false } +bevy_state = { path = "crates/bevy_state", version = "0.16.1", default-features = false } +bevy_asset = { path = "crates/bevy_asset", version = "0.16.1", default-features = false } +bevy_reflect = { path = "crates/bevy_reflect", version = "0.16.1", default-features = false } +bevy_image = { path = "crates/bevy_image", version = "0.16.1", default-features = false } +bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.16.1", 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 f3136c3f82..645bc71a60 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" +version = "0.16.1" 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", default-features = false } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", 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 cfc6124f0a..da6a7932a2 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_log = { path = "../bevy_log", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_log = { path = "../bevy_log", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", features = [ "petgraph", ] } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_time = { path = "../bevy_time", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_time = { path = "../bevy_time", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 8db41f0bf9..e61b1620d6 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" +version = "0.16.1" 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" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [ +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false, features = [ "alloc", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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 bb3fd9c27b..76d8a9c170 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" +version = "0.16.1" 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" } -bevy_asset_macros = { path = "macros", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset_macros = { path = "macros", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", features = [ "uuid", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } [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", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_asset/macros/Cargo.toml b/crates/bevy_asset/macros/Cargo.toml index 134f50a406..126a7a39ee 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.1" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 0f36c3e254..1b72db655d 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } # 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", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_color/Cargo.toml b/crates/bevy_color/Cargo.toml index 312c60be79..43c13e4553 100644 --- a/crates/bevy_color/Cargo.toml +++ b/crates/bevy_color/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_color" -version = "0.16.1" +version = "0.16.2" 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", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false, features = [ "curve", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", 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 06e9b1a789..bae5c69caf 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index ce5fb5dfae..04f72829a0 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.1" } 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 707c789d74..9d54d5ab08 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_input = { path = "../bevy_input", version = "0.16.0" } -bevy_picking = { path = "../bevy_picking", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_time = { path = "../bevy_time", version = "0.16.0" } -bevy_text = { path = "../bevy_text", version = "0.16.0" } -bevy_ui = { path = "../bevy_ui", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_state = { path = "../bevy_state", version = "0.16.0" } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_input = { path = "../bevy_input", version = "0.16.1" } +bevy_picking = { path = "../bevy_picking", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_time = { path = "../bevy_time", version = "0.16.1" } +bevy_text = { path = "../bevy_text", version = "0.16.1" } +bevy_ui = { path = "../bevy_ui", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_state = { path = "../bevy_state", version = "0.16.1" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 18671a11c0..1ac5c49b33 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" +version = "0.16.1" 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", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_time = { path = "../bevy_time", version = "0.16.0", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_time = { path = "../bevy_time", version = "0.16.1", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false, features = [ "alloc", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "alloc", ] } diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 9f3b262282..e5624f4f44 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" +version = "0.16.1" 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", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.16.1", default-features = false } [lints] workspace = true diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index b75e2f7107..07e227de1a 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" +version = "0.16.1" 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" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [ +bevy_ptr = { path = "../bevy_ptr", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", features = [ "smallvec", ], default-features = false, optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false, features = [ "alloc", ] } -bevy_ecs_macros = { path = "macros", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_ecs_macros = { path = "macros", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "alloc", ] } diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index c58648e95c..a0bd712921 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.1" } 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 533faf4a04..1a5b9e5207 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.16.1" } encase_derive_impl = "0.10" [lints] diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 37a9f138a1..49faf1acc5 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" +version = "0.16.1" 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" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_input = { path = "../bevy_input", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_time = { path = "../bevy_time", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_input = { path = "../bevy_input", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_time = { path = "../bevy_time", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_gizmos/Cargo.toml b/crates/bevy_gizmos/Cargo.toml index ab3eca6dd0..cbe9e00824 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" +version = "0.16.1" 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", optional = true } -bevy_sprite = { path = "../bevy_sprite", version = "0.16.0", optional = true } -bevy_app = { path = "../bevy_app", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_gizmos_macros = { path = "macros", version = "0.16.0" } -bevy_time = { path = "../bevy_time", version = "0.16.0" } +bevy_pbr = { path = "../bevy_pbr", version = "0.16.1", optional = true } +bevy_sprite = { path = "../bevy_sprite", version = "0.16.1", optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.1", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_gizmos_macros = { path = "macros", version = "0.16.1" } +bevy_time = { path = "../bevy_time", version = "0.16.1" } # other bytemuck = "1.0" diff --git a/crates/bevy_gizmos/macros/Cargo.toml b/crates/bevy_gizmos/macros/Cargo.toml index 30d5d7f8ea..b80ceefe19 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.1" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index a31828f6c3..cc95d9bf70 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" +version = "0.16.1" 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", optional = true } -bevy_app = { path = "../bevy_app", version = "0.16.0" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0" } -bevy_pbr = { path = "../bevy_pbr", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_scene = { path = "../bevy_scene", version = "0.16.0", features = [ +bevy_animation = { path = "../bevy_animation", version = "0.16.1", optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.1" } +bevy_pbr = { path = "../bevy_pbr", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_scene = { path = "../bevy_scene", version = "0.16.1", features = [ "bevy_render", ] } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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" } +bevy_log = { path = "../bevy_log", version = "0.16.1" } [lints] workspace = true diff --git a/crates/bevy_image/Cargo.toml b/crates/bevy_image/Cargo.toml index 20b968b427..0ce1374945 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" +version = "0.16.1" edition = "2024" description = "Provides image types for Bevy Engine" homepage = "https://bevyengine.org" @@ -40,16 +40,16 @@ zstd = ["ruzstd"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2", features = [ "serialize", "wgpu-types", ] } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } @@ -76,7 +76,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" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } [lints] workspace = true diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 7a213b4196..eca452ddbf 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" +version = "0.16.1" 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", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", features = [ "glam", ], default-features = false, optional = true } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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 652d726f14..6bdd23f32e 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" +version = "0.16.1" 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", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_input = { path = "../bevy_input", version = "0.16.0", default-features = false } -bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false } -bevy_window = { path = "../bevy_window", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_input = { path = "../bevy_input", version = "0.16.1", default-features = false } +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false } +bevy_window = { path = "../bevy_window", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", features = [ "glam", ], default-features = false, optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index e4e8b38886..4f231eb62a 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" +version = "0.16.1" 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", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, features = [ "bevy_reflect", ] } -bevy_derive = { path = "../bevy_derive", version = "0.16.0", default-features = false } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false, features = [ +bevy_derive = { path = "../bevy_derive", version = "0.16.1", default-features = false } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.1", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false, features = [ "bevy_reflect", ] } -bevy_input = { path = "../bevy_input", version = "0.16.0", default-features = false, features = [ +bevy_input = { path = "../bevy_input", version = "0.16.1", default-features = false, features = [ "bevy_reflect", ] } -bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false, features = [ "bevy_reflect", "nostd-libm", ] } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "alloc", ] } -bevy_ptr = { path = "../bevy_ptr", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [ +bevy_ptr = { path = "../bevy_ptr", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, features = [ "smallvec", ] } -bevy_time = { path = "../bevy_time", version = "0.16.0", default-features = false, features = [ +bevy_time = { path = "../bevy_time", version = "0.16.1", default-features = false, features = [ "bevy_reflect", ] } -bevy_transform = { path = "../bevy_transform", version = "0.16.0", default-features = false, features = [ +bevy_transform = { path = "../bevy_transform", version = "0.16.1", default-features = false, features = [ "bevy-support", "bevy_reflect", ] } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [ +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false, features = [ "alloc", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false } # bevy (std required) -bevy_log = { path = "../bevy_log", version = "0.16.0", optional = true } +bevy_log = { path = "../bevy_log", version = "0.16.1", optional = true } # bevy (optional) -bevy_a11y = { path = "../bevy_a11y", optional = true, version = "0.16.0", features = [ +bevy_a11y = { path = "../bevy_a11y", optional = true, version = "0.16.1", features = [ "bevy_reflect", ] } -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.16.0" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.16.0" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.16.0" } -bevy_color = { path = "../bevy_color", optional = true, version = "0.16.0", default-features = false, features = [ +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.16.1" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.16.1" } +bevy_color = { path = "../bevy_color", optional = true, version = "0.16.2", default-features = false, features = [ "alloc", "bevy_reflect", ] } -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" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.16.0" } -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" } -bevy_image = { path = "../bevy_image", optional = true, version = "0.16.0" } -bevy_input_focus = { path = "../bevy_input_focus", optional = true, version = "0.16.0", default-features = false, features = [ +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.16.1" } +bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.16.1" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.16.1" } +bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.16.1", default-features = false } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.16.1" } +bevy_image = { path = "../bevy_image", optional = true, version = "0.16.1" } +bevy_input_focus = { path = "../bevy_input_focus", optional = true, version = "0.16.1", default-features = false, features = [ "bevy_reflect", ] } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.16.0" } -bevy_picking = { path = "../bevy_picking", optional = true, version = "0.16.0" } -bevy_remote = { path = "../bevy_remote", optional = true, version = "0.16.0" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.16.0" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.16.0" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.16.0" } -bevy_state = { path = "../bevy_state", optional = true, version = "0.16.0", default-features = false, features = [ +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.16.1" } +bevy_picking = { path = "../bevy_picking", optional = true, version = "0.16.1" } +bevy_remote = { path = "../bevy_remote", optional = true, version = "0.16.1" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.16.1" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.16.1" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.16.1" } +bevy_state = { path = "../bevy_state", optional = true, version = "0.16.1", default-features = false, features = [ "bevy_app", "bevy_reflect", ] } -bevy_text = { path = "../bevy_text", optional = true, version = "0.16.0" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.16.0" } -bevy_window = { path = "../bevy_window", optional = true, version = "0.16.0", default-features = false, features = [ +bevy_text = { path = "../bevy_text", optional = true, version = "0.16.1" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.16.1" } +bevy_window = { path = "../bevy_window", optional = true, version = "0.16.1", default-features = false, features = [ "bevy_reflect", ] } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.16.0", default-features = false } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.16.1", default-features = false } [lints] workspace = true diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index f8b843714b..5f48d08b3b 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" +version = "0.16.1" 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" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } # 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", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index b68b19d00b..d6f0ea137d 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" +version = "0.16.1" 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 47528fc83b..e1780da4f4 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" +version = "0.16.1" 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", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", 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 5781c43027..d6a1349104 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" +version = "0.16.1" 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" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_mikktspace/Cargo.toml b/crates/bevy_mikktspace/Cargo.toml index 94cd3250b5..e30d09bc05 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" +version = "0.16.1" edition = "2024" authors = [ "Benjamin Wasty ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 5ec84a2608..f00bdb6e60 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_picking/Cargo.toml b/crates/bevy_picking/Cargo.toml index 0159cfc6d5..06a135a8af 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_input = { path = "../bevy_input", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_time = { path = "../bevy_time", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_input = { path = "../bevy_input", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.1", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_time = { path = "../bevy_time", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_platform/Cargo.toml b/crates/bevy_platform/Cargo.toml index 4bb2e2672c..99f3b6c89f 100644 --- a/crates/bevy_platform/Cargo.toml +++ b/crates/bevy_platform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_platform" -version = "0.16.0" +version = "0.16.1" edition = "2024" description = "Provides common platform agnostic APIs, as well as platform-specific features for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index a2cf71926a..52f0e29d55 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" +version = "0.16.1" 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 483d2782f7..95b146a083 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" +version = "0.16.1" edition = "2024" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -78,12 +78,12 @@ web = ["bevy_platform/web", "uuid?/js"] [dependencies] # bevy -bevy_reflect_derive = { path = "derive", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, features = [ +bevy_reflect_derive = { path = "derive", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false, features = [ "alloc", ] } -bevy_ptr = { path = "../bevy_ptr", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_ptr = { path = "../bevy_ptr", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "alloc", "serialize", ] } diff --git a/crates/bevy_reflect/derive/Cargo.toml b/crates/bevy_reflect/derive/Cargo.toml index 492431ebee..4d0ec0152b 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.1" } 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 a2b8e7d994..a302529f52 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" +version = "0.16.1" 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" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", features = [ "serialize", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 12e20d4304..3c8516941a 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0", features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2", features = [ "serialize", "wgpu-types", ] } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render_macros = { path = "macros", version = "0.16.0" } -bevy_time = { path = "../bevy_time", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_mesh = { path = "../bevy_mesh", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render_macros = { path = "macros", version = "0.16.1" } +bevy_time = { path = "../bevy_time", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_mesh = { path = "../bevy_mesh", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_render/macros/Cargo.toml b/crates/bevy_render/macros/Cargo.toml index a3736442c8..50c9f94795 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.1" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 44e58a8f4b..b958751c68 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0", optional = true } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1", optional = true } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 81ad01bbeb..34b4f339d9 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_picking = { path = "../bevy_picking", version = "0.16.0", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0", optional = true } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_picking = { path = "../bevy_picking", version = "0.16.1", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1", optional = true } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_state/Cargo.toml b/crates/bevy_state/Cargo.toml index 2fd5ac3be0..25a046517f 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" +version = "0.16.1" 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", default-features = false } -bevy_state_macros = { path = "macros", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", 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", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_state_macros = { path = "macros", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, optional = true } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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 541fa99755..d554c9596f 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" +version = "0.16.1" 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" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.1" } syn = { version = "2.0", features = ["full"] } quote = "1.0" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 64fd2a2869..c7aad0f5e8 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" +version = "0.16.1" edition = "2024" description = "A task executor for Bevy Engine" homepage = "https://bevyengine.org" @@ -42,7 +42,7 @@ web = [ ] [dependencies] -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "alloc", ] } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index cfd8a11634..06ab6ab1cf 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" +version = "0.16.1" 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" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_log = { path = "../bevy_log", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.16.0" } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_log = { path = "../bevy_log", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_sprite = { path = "../bevy_sprite", version = "0.16.1" } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", "serialize", ] } diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 6e2d4ca576..40888d1ae1 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" +version = "0.16.1" edition = "2024" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -48,10 +48,10 @@ critical-section = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.16.0", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false } +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, optional = true } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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 fe6e121fca..e5737764c0 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" +version = "0.16.1" 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", 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", default-features = false, optional = true } -bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false, optional = true } +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false, optional = true } +bevy_log = { path = "../bevy_log", version = "0.16.1", default-features = false, optional = true } +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", 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" } -bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false, features = [ "approx", ] } approx = "0.5.1" diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index b382a88fcc..75e4a93345 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" +version = "0.16.1" 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" } -bevy_app = { path = "../bevy_app", version = "0.16.0" } -bevy_asset = { path = "../bevy_asset", version = "0.16.0" } -bevy_color = { path = "../bevy_color", version = "0.16.0" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_image = { path = "../bevy_image", version = "0.16.0" } -bevy_input = { path = "../bevy_input", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_render = { path = "../bevy_render", version = "0.16.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.16.0" } -bevy_text = { path = "../bevy_text", version = "0.16.0" } -bevy_picking = { path = "../bevy_picking", version = "0.16.0", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.16.1" } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_asset = { path = "../bevy_asset", version = "0.16.1" } +bevy_color = { path = "../bevy_color", version = "0.16.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_image = { path = "../bevy_image", version = "0.16.1" } +bevy_input = { path = "../bevy_input", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_render = { path = "../bevy_render", version = "0.16.1" } +bevy_sprite = { path = "../bevy_sprite", version = "0.16.1" } +bevy_text = { path = "../bevy_text", version = "0.16.1" } +bevy_picking = { path = "../bevy_picking", version = "0.16.1", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index d75f3025da..b354d7cd22 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" +version = "0.16.1" edition = "2024" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" @@ -31,7 +31,7 @@ alloc = ["bevy_platform/alloc"] critical-section = ["bevy_platform/critical-section"] [dependencies] -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", 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 6245dd6b13..3db84b8125 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" +version = "0.16.1" 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", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0", default-features = false } -bevy_input = { path = "../bevy_input", version = "0.16.0", default-features = false } -bevy_math = { path = "../bevy_math", version = "0.16.0", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1", default-features = false } +bevy_input = { path = "../bevy_input", version = "0.16.1", default-features = false } +bevy_math = { path = "../bevy_math", version = "0.16.1", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, features = [ "glam", "smol_str", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.16.0", default-features = false } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false } +bevy_utils = { path = "../bevy_utils", version = "0.16.1", default-features = false } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false } # other serde = { version = "1.0", features = [ diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index ad6253ae75..dc8de86163 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" +version = "0.16.1" 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" } -bevy_app = { path = "../bevy_app", version = "0.16.0" } -bevy_derive = { path = "../bevy_derive", version = "0.16.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.16.0" } -bevy_input = { path = "../bevy_input", version = "0.16.0" } -bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.0" } -bevy_log = { path = "../bevy_log", version = "0.16.0" } -bevy_math = { path = "../bevy_math", version = "0.16.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0" } -bevy_window = { path = "../bevy_window", version = "0.16.0" } -bevy_utils = { path = "../bevy_utils", version = "0.16.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.16.1" } +bevy_app = { path = "../bevy_app", version = "0.16.1" } +bevy_derive = { path = "../bevy_derive", version = "0.16.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.16.1" } +bevy_input = { path = "../bevy_input", version = "0.16.1" } +bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.1" } +bevy_log = { path = "../bevy_log", version = "0.16.1" } +bevy_math = { path = "../bevy_math", version = "0.16.1" } +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1" } +bevy_window = { path = "../bevy_window", version = "0.16.1" } +bevy_utils = { path = "../bevy_utils", version = "0.16.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1" } +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "std", ] } # bevy optional -bevy_asset = { path = "../bevy_asset", version = "0.16.0", optional = true } -bevy_image = { path = "../bevy_image", version = "0.16.0", optional = true } +bevy_asset = { path = "../bevy_asset", version = "0.16.1", optional = true } +bevy_image = { path = "../bevy_image", version = "0.16.1", 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", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.16.0", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-features = false, features = [ +bevy_platform = { path = "../bevy_platform", version = "0.16.1", default-features = false, features = [ "web", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.16.0", default-features = false, features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.16.1", default-features = false, features = [ "web", ] }