diff --git a/Cargo.toml b/Cargo.toml index a81438e6f2..3c3b2f306f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -448,11 +448,11 @@ custom_cursor = ["bevy_internal/custom_cursor"] ghost_nodes = ["bevy_internal/ghost_nodes"] [dependencies] -bevy_internal = { path = "crates/bevy_internal", version = "0.15.0-rc.2", default-features = false } +bevy_internal = { path = "crates/bevy_internal", version = "0.15.0-rc.3", default-features = false } # Wasm does not support dynamic linking. [target.'cfg(not(target_family = "wasm"))'.dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.15.0-rc.2", default-features = false, optional = true } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.15.0-rc.3", default-features = false, optional = true } [dev-dependencies] rand = "0.8.0" @@ -462,7 +462,7 @@ flate2 = "1.0" serde = { version = "1", features = ["derive"] } serde_json = "1" bytemuck = "1.7" -bevy_render = { path = "crates/bevy_render", version = "0.15.0-rc.2", default-features = false } +bevy_render = { path = "crates/bevy_render", version = "0.15.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 5f47270191..593869bf57 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_a11y" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides accessibility support for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,10 +10,10 @@ keywords = ["bevy", "accessibility", "a11y"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } accesskit = "0.16" diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index b87110c063..a9e836c977 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,24 +10,24 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_animation_derive = { path = "derive", version = "0.15.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_animation_derive = { path = "derive", version = "0.15.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", "petgraph", ] } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } # other petgraph = { version = "0.6", features = ["serde-1"] } diff --git a/crates/bevy_animation/derive/Cargo.toml b/crates/bevy_animation/derive/Cargo.toml index e2c33db6ed..3e9ead824c 100644 --- a/crates/bevy_animation/derive/Cargo.toml +++ b/crates/bevy_animation/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation_derive" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Derive implementations for bevy_animation" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-rc.3" } proc-macro2 = "1.0" quote = "1.0" syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 8fc0afca49..6a9fe60597 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -21,11 +21,11 @@ reflect_functions = [ [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } # other downcast-rs = "1.2.0" diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 3b49c83e69..8ec9fc0f01 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides asset functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -19,14 +19,14 @@ watch = [] trace = [] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset_macros = { path = "macros", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset_macros = { path = "macros", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "uuid", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } stackfuture = "0.3" atomicow = "1.0" @@ -52,7 +52,7 @@ derive_more = { version = "1", default-features = false, features = [ uuid = { version = "1.0", features = ["v4"] } [target.'cfg(target_os = "android")'.dependencies] -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } @@ -68,8 +68,8 @@ js-sys = "0.3" notify-debouncer-full = { version = "0.4.0", optional = true } [dev-dependencies] -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.15.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_asset/macros/Cargo.toml b/crates/bevy_asset/macros/Cargo.toml index 0c9953a890..6be184c127 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.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 7819ba9783..c6554bb52b 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,17 +10,17 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other rodio = { version = "0.19", default-features = false } diff --git a/crates/bevy_color/Cargo.toml b/crates/bevy_color/Cargo.toml index 8d2999f6a3..38c962051f 100644 --- a/crates/bevy_color/Cargo.toml +++ b/crates/bevy_color/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_color" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Types for representing and manipulating color values" homepage = "https://bevyengine.org" @@ -10,10 +10,10 @@ keywords = ["bevy", "color"] rust-version = "1.76.0" [dependencies] -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3", default-features = false, features = [ "curve", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ], optional = true } bytemuck = { version = "1", features = ["derive"] } diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index d42e819cd0..a8fc6a82de 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides core functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,13 +10,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2", default-features = false } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3", default-features = false } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ], optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other serde = { version = "1.0", optional = true } diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index 9c8e44c8b7..818238cf2b 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" authors = [ "Bevy Contributors ", @@ -22,19 +22,19 @@ smaa_luts = ["bevy_render/ktx2", "bevy_image/ktx2", "bevy_image/zstd"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } serde = { version = "1", features = ["derive"] } bitflags = "2.3" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index 560795e60c..eade89d099 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.15.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 710362bbd3..8d3a883bb9 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Collection of developer tools for the Bevy Engine" homepage = "https://bevyengine.org" @@ -15,30 +15,30 @@ bevy_ui_debug = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_gizmos = { path = "../bevy_gizmos", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_gizmos = { path = "../bevy_gizmos", version = "0.15.0-rc.3", features = [ "bevy_render", ] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_text = { path = "../bevy_text", version = "0.15.0-rc.2" } -bevy_ui = { path = "../bevy_ui", version = "0.15.0-rc.2", features = [ +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_text = { path = "../bevy_text", version = "0.15.0-rc.3" } +bevy_ui = { path = "../bevy_ui", version = "0.15.0-rc.3", features = [ "bevy_text", ] } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } -bevy_state = { path = "../bevy_state", version = "0.15.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } +bevy_state = { path = "../bevy_state", version = "0.15.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 f572d44bd6..a200d007a4 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,12 +15,12 @@ sysinfo_plugin = ["sysinfo"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } const-fnv1a-hash = "1.1.0" diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 1c9b6f09a5..5e10efc9ae 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.15.0-rc.3", default-features = false } [lints] workspace = true diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index ca15fafdcb..ef826ee75a 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -20,11 +20,11 @@ track_change_detection = [] reflect_functions = ["bevy_reflect", "bevy_reflect/functions"] [dependencies] -bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_ecs_macros = { path = "macros", version = "0.15.0-rc.2" } +bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_ecs_macros = { path = "macros", version = "0.15.0-rc.3" } petgraph = "0.6" bitflags = "2.3" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 7529d8ff99..6b42ace398 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.15.0-rc.2" +version = "0.15.0-rc.3" description = "Bevy ECS Macros" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-rc.3" } syn = { version = "2.0", features = ["full"] } quote = "1.0" diff --git a/crates/bevy_encase_derive/Cargo.toml b/crates/bevy_encase_derive/Cargo.toml index 5c78beb115..d0d3f57f43 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.15.0-rc.3" } encase_derive_impl = "0.10" [lints] diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 758feb68a2..f732d50e47 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,11 +10,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } # other gilrs = "0.11.0" diff --git a/crates/bevy_gizmos/Cargo.toml b/crates/bevy_gizmos/Cargo.toml index 9da148f2b9..b36fcac5d4 100644 --- a/crates/bevy_gizmos/Cargo.toml +++ b/crates/bevy_gizmos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides gizmos for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,20 +15,20 @@ bevy_render = ["dep:bevy_render", "bevy_core_pipeline"] [dependencies] # Bevy -bevy_pbr = { path = "../bevy_pbr", version = "0.15.0-rc.2", optional = true } -bevy_sprite = { path = "../bevy_sprite", version = "0.15.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_gizmos_macros = { path = "macros", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } +bevy_pbr = { path = "../bevy_pbr", version = "0.15.0-rc.3", optional = true } +bevy_sprite = { path = "../bevy_sprite", version = "0.15.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_gizmos_macros = { path = "macros", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } bytemuck = "1.0" diff --git a/crates/bevy_gizmos/macros/Cargo.toml b/crates/bevy_gizmos/macros/Cargo.toml index 814818e719..2873a8cb69 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.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 2975921f3f..713c8de283 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" @@ -18,27 +18,27 @@ pbr_anisotropy_texture = ["bevy_pbr/pbr_anisotropy_texture"] [dependencies] # bevy -bevy_animation = { path = "../bevy_animation", version = "0.15.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_pbr = { path = "../bevy_pbr", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_animation = { path = "../bevy_animation", version = "0.15.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_pbr = { path = "../bevy_pbr", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_scene = { path = "../bevy_scene", version = "0.15.0-rc.2", features = [ +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_scene = { path = "../bevy_scene", version = "0.15.0-rc.3", features = [ "bevy_render", ] } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other gltf = { version = "1.4.0", default-features = false, features = [ @@ -66,7 +66,7 @@ serde_json = "1" smallvec = "1.11" [dev-dependencies] -bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" } +bevy_log = { path = "../bevy_log", version = "0.15.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_hierarchy/Cargo.toml b/crates/bevy_hierarchy/Cargo.toml index abf31ce247..e0f7354df8 100644 --- a/crates/bevy_hierarchy/Cargo.toml +++ b/crates/bevy_hierarchy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hierarchy" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides hierarchy functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -16,14 +16,14 @@ reflect = ["bevy_ecs/bevy_reflect", "bevy_reflect"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2", optional = true } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2", optional = true } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3", optional = true } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", "smallvec", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } disqualified = "1.0" smallvec = { version = "1.11", features = ["union", "const_generics"] } diff --git a/crates/bevy_image/Cargo.toml b/crates/bevy_image/Cargo.toml index 01a609538a..7b317a5214 100644 --- a/crates/bevy_image/Cargo.toml +++ b/crates/bevy_image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_image" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides image types for Bevy Engine" homepage = "https://bevyengine.org" @@ -32,16 +32,16 @@ zlib = ["flate2"] zstd = ["ruzstd"] [dependencies] -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2", features = [ +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3", features = [ "serialize", "wgpu-types", ] } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # rendering image = { version = "0.25.2", default-features = false } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 4bdaaea8cc..bf03cc3355 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -20,17 +20,17 @@ serialize = ["serde", "smol_str/serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2", default-features = false } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", default-features = false, features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3", default-features = false } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", default-features = false, features = [ "serialize", ] } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2", default-features = false, features = [ +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3", default-features = false, features = [ "rand", "serialize", ] } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "glam", "smol_str", ], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 4f862a471f..fbc2cfba51 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature" homepage = "https://bevyengine.org" @@ -248,46 +248,46 @@ ghost_nodes = ["bevy_ui/ghost_nodes"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_state = { path = "../bevy_state", optional = true, version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_state = { path = "../bevy_state", optional = true, version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } # bevy (optional) -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.15.0-rc.2" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", optional = true, version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.15.0-rc.2" } -bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.15.0-rc.2" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.15.0-rc.2" } -bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.15.0-rc.2", default-features = false } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.15.0-rc.2" } -bevy_image = { path = "../bevy_image", optional = true, version = "0.15.0-rc.2" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.15.0-rc.2" } -bevy_picking = { path = "../bevy_picking", optional = true, version = "0.15.0-rc.2" } -bevy_remote = { path = "../bevy_remote", optional = true, version = "0.15.0-rc.2" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.15.0-rc.2" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.15.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.15.0-rc.2" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.15.0-rc.2" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.15.0-rc.2" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.15.0-rc.2" } +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.15.0-rc.3" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", optional = true, version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.15.0-rc.3" } +bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.15.0-rc.3" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.15.0-rc.3" } +bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.15.0-rc.3", default-features = false } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.15.0-rc.3" } +bevy_image = { path = "../bevy_image", optional = true, version = "0.15.0-rc.3" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.15.0-rc.3" } +bevy_picking = { path = "../bevy_picking", optional = true, version = "0.15.0-rc.3" } +bevy_remote = { path = "../bevy_remote", optional = true, version = "0.15.0-rc.3" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.15.0-rc.3" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.15.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.15.0-rc.3" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.15.0-rc.3" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.15.0-rc.3" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.15.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index e3bb51ab69..58377465f7 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides logging for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,9 +13,9 @@ trace = ["tracing-error"] trace_tracy_memory = ["dep:tracy-client"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } tracing-subscriber = { version = "0.3.1", features = [ "registry", diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index c9207674bf..515de741d4 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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 ad670530b0..f763bb55f8 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides math functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -26,7 +26,7 @@ rand = { version = "0.8", features = [ ], default-features = false, optional = true } rand_distr = { version = "0.4.3", optional = true } smallvec = { version = "1.11" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "glam", ], optional = true } @@ -36,7 +36,7 @@ approx = "0.5" rand = "0.8" rand_chacha = "0.3" # Enable the approx feature when testing. -bevy_math = { path = ".", version = "0.15.0-rc.2", features = ["approx"] } +bevy_math = { path = ".", version = "0.15.0-rc.3", features = ["approx"] } glam = { version = "0.29", features = ["approx"] } [features] diff --git a/crates/bevy_mesh/Cargo.toml b/crates/bevy_mesh/Cargo.toml index 1430afcc00..85e7c1503a 100644 --- a/crates/bevy_mesh/Cargo.toml +++ b/crates/bevy_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mesh" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides mesh types for Bevy Engine" homepage = "https://bevyengine.org" @@ -9,17 +9,17 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # misc bitflags = { version = "2.3", features = ["serde"] } diff --git a/crates/bevy_mikktspace/Cargo.toml b/crates/bevy_mikktspace/Cargo.toml index 7bb4756f7f..866a8e57fa 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mikktspace" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" authors = [ "Benjamin Wasty ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index eb04f8896c..952d43e2fc 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Adds PBR rendering to Bevy Engine" homepage = "https://bevyengine.org" @@ -31,21 +31,21 @@ meshlet_processor = [ [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } # other diff --git a/crates/bevy_picking/Cargo.toml b/crates/bevy_picking/Cargo.toml index 70caca0183..185eef5364 100644 --- a/crates/bevy_picking/Cargo.toml +++ b/crates/bevy_picking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_picking" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides screen picking functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -12,20 +12,20 @@ license = "MIT OR Apache-2.0" bevy_mesh = ["dep:bevy_mesh", "dep:crossbeam-channel"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_mesh = { path = "../bevy_mesh", version = "0.15.0-rc.2", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_mesh = { path = "../bevy_mesh", version = "0.15.0-rc.3", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } crossbeam-channel = { version = "0.5", optional = true } uuid = { version = "1.1", features = ["v4"] } diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index c30b594265..7c5ae1c7c7 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ptr" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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 3a92c06791..cb6de796b7 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -30,9 +30,9 @@ alloc = [] [dependencies] # bevy -bevy_reflect_derive = { path = "derive", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-rc.2" } +bevy_reflect_derive = { path = "derive", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-rc.3" } # other erased-serde = "0.4" diff --git a/crates/bevy_reflect/derive/Cargo.toml b/crates/bevy_reflect/derive/Cargo.toml index 1dea6faa0c..e4502d0b6d 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.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 d686958e0f..d47f5c9c74 100644 --- a/crates/bevy_remote/Cargo.toml +++ b/crates/bevy_remote/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_remote" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", features = [ "serialize", ] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other anyhow = "1" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 4674a6c499..45ac5e872b 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -33,30 +33,30 @@ ios_simulator = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3", features = [ "serialize", "wgpu-types", ] } -bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_core = { path = "../bevy_core", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_render_macros = { path = "macros", version = "0.15.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_image = { path = "../bevy_image", version = "0.15.0-rc.2" } -bevy_mesh = { path = "../bevy_mesh", version = "0.15.0-rc.2" } +bevy_render_macros = { path = "macros", version = "0.15.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_image = { path = "../bevy_image", version = "0.15.0-rc.3" } +bevy_mesh = { path = "../bevy_mesh", version = "0.15.0-rc.3" } # rendering image = { version = "0.25.2", default-features = false } diff --git a/crates/bevy_render/macros/Cargo.toml b/crates/bevy_render/macros/Cargo.toml index c9191e479a..c6e3981e3c 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.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.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 b29ecd7455..84608356c7 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,17 +14,17 @@ serialize = ["dep:serde", "uuid/serde", "bevy_ecs/serialize"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2", optional = true } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3", optional = true } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 117c11b4ed..9b830b4f92 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides sprite functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -17,21 +17,21 @@ webgpu = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_picking = { path = "../bevy_picking", version = "0.15.0-rc.2", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_picking = { path = "../bevy_picking", version = "0.15.0-rc.3", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2", optional = true } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3", optional = true } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } # other bytemuck = { version = "1", features = ["derive", "must_cast"] } diff --git a/crates/bevy_state/Cargo.toml b/crates/bevy_state/Cargo.toml index d30f0e5732..591cc697a2 100644 --- a/crates/bevy_state/Cargo.toml +++ b/crates/bevy_state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_state" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Finite state machines for Bevy" homepage = "https://bevyengine.org" @@ -17,12 +17,12 @@ bevy_app = ["dep:bevy_app"] bevy_hierarchy = ["dep:bevy_hierarchy"] [dependencies] -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_state_macros = { path = "macros", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2", optional = true } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_state_macros = { path = "macros", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3", optional = true } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3", optional = true } [lints] workspace = true diff --git a/crates/bevy_state/macros/Cargo.toml b/crates/bevy_state/macros/Cargo.toml index 33352d69c2..c5e72dc7ad 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.15.0-rc.2" +version = "0.15.0-rc.3" description = "Macros for bevy_state" edition = "2021" 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.15.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.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 f2652e0bc4..d6e3bcbb1e 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "A task executor for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 5f9027eebd..b1836dd5b4 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", version = "0.15.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", version = "0.15.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other cosmic-text = { version = "0.12", features = ["shape-run-cache"] } diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index c96465981f..46e2ebfb24 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_time" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,14 +14,14 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", features = [ "bevy_reflect", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other crossbeam-channel = "0.5.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index e03c99a124..c14ca72a94 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" 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.15.0-rc.2", optional = true } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3", features = [ "bevy_reflect", ], optional = true } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2", optional = true } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3", optional = true } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ], optional = true } serde = { version = "1", features = ["derive"], optional = true } @@ -27,8 +27,8 @@ derive_more = { version = "1", default-features = false, features = [ ] } [dev-dependencies] -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.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 cea980a0ab..e78d256d5a 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "A custom ECS-driven UI framework built specifically for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,27 +10,27 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.15.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" } -bevy_animation = { path = "../bevy_animation", version = "0.15.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", version = "0.15.0-rc.2" } -bevy_text = { path = "../bevy_text", version = "0.15.0-rc.2", optional = true } -bevy_picking = { path = "../bevy_picking", version = "0.15.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.15.0-rc.3" } +bevy_animation = { path = "../bevy_animation", version = "0.15.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", version = "0.15.0-rc.3" } +bevy_text = { path = "../bevy_text", version = "0.15.0-rc.3", optional = true } +bevy_picking = { path = "../bevy_picking", version = "0.15.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other taffy = { version = "0.5" } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 548d38ab1e..d5aafc97c1 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" @@ -27,7 +27,7 @@ ahash = { version = "0.8.7", default-features = false, features = [ ] } tracing = { version = "0.1", default-features = false } hashbrown = { version = "0.14.2", default-features = false } -bevy_utils_proc_macros = { version = "0.15.0-rc.2", path = "macros" } +bevy_utils_proc_macros = { version = "0.15.0-rc.3", path = "macros" } thread_local = { version = "1.0", optional = true } [dev-dependencies] diff --git a/crates/bevy_utils/macros/Cargo.toml b/crates/bevy_utils/macros/Cargo.toml index be9e14cd85..c8e2121c3f 100644 --- a/crates/bevy_utils/macros/Cargo.toml +++ b/crates/bevy_utils/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils_proc_macros" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" description = "Bevy Utils Proc Macros" edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index a0973e323c..8c11546ca1 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,16 +13,16 @@ serialize = ["serde", "smol_str/serde", "bevy_ecs/serialize"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3", features = [ "glam", "smol_str", ] } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index ce68535686..174e9cc09a 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.15.0-rc.2" +version = "0.15.0-rc.3" edition = "2021" description = "A winit window and input backend for Bevy Engine" homepage = "https://bevyengine.org" @@ -23,22 +23,22 @@ custom_cursor = ["bevy_image", "bevy_asset", "bytemuck", "wgpu-types"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.15.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" } +bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.15.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.15.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.15.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.15.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.15.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.3" } # bevy optional -bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2", optional = true } -bevy_image = { path = "../bevy_image", version = "0.15.0-rc.2", optional = true } +bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.3", optional = true } +bevy_image = { path = "../bevy_image", version = "0.15.0-rc.3", optional = true } # other # feature rwh_06 refers to window_raw_handle@v0.6