mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Release 0.14.2
This commit is contained in:
parent
79b248c7ce
commit
5c759a1be8
48 changed files with 351 additions and 351 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy"
|
name = "bevy"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
categories = ["game-engines", "graphics", "gui", "rendering"]
|
categories = ["game-engines", "graphics", "gui", "rendering"]
|
||||||
description = "A refreshingly simple data-driven game engine and app framework"
|
description = "A refreshingly simple data-driven game engine and app framework"
|
||||||
|
@ -347,11 +347,11 @@ ios_simulator = ["bevy_internal/ios_simulator"]
|
||||||
bevy_state = ["bevy_internal/bevy_state"]
|
bevy_state = ["bevy_internal/bevy_state"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_internal = { path = "crates/bevy_internal", version = "0.14.1", default-features = false }
|
bevy_internal = { path = "crates/bevy_internal", version = "0.14.2", default-features = false }
|
||||||
|
|
||||||
# WASM does not support dynamic linking.
|
# WASM does not support dynamic linking.
|
||||||
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
||||||
bevy_dylib = { path = "crates/bevy_dylib", version = "0.14.1", default-features = false, optional = true }
|
bevy_dylib = { path = "crates/bevy_dylib", version = "0.14.2", default-features = false, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.8.0"
|
rand = "0.8.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_a11y"
|
name = "bevy_a11y"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides accessibility support for Bevy Engine"
|
description = "Provides accessibility support for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,9 +10,9 @@ keywords = ["bevy", "accessibility", "a11y"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
|
|
||||||
accesskit = "0.14"
|
accesskit = "0.14"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_animation"
|
name = "bevy_animation"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides animation functionality for Bevy Engine"
|
description = "Provides animation functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,23 +10,23 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.14.1" }
|
bevy_log = { path = "../bevy_log", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
"petgraph",
|
"petgraph",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
fixedbitset = "0.5"
|
fixedbitset = "0.5"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_app"
|
name = "bevy_app"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides core App functionality for Bevy Engine"
|
description = "Provides core App functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -16,11 +16,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", optional = true }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
downcast-rs = "1.2.0"
|
downcast-rs = "1.2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_asset"
|
name = "bevy_asset"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides asset functionality for Bevy Engine"
|
description = "Provides asset functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -19,14 +19,14 @@ watch = []
|
||||||
trace = []
|
trace = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset_macros = { path = "macros", version = "0.14.1" }
|
bevy_asset_macros = { path = "macros", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"uuid",
|
"uuid",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
async-broadcast = "0.5"
|
async-broadcast = "0.5"
|
||||||
async-fs = "2.0"
|
async-fs = "2.0"
|
||||||
|
@ -43,7 +43,7 @@ thiserror = "1.0"
|
||||||
uuid = { version = "1.0", features = ["v4"] }
|
uuid = { version = "1.0", features = ["v4"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "android")'.dependencies]
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
bevy_winit = { path = "../bevy_winit", version = "0.14.1" }
|
bevy_winit = { path = "../bevy_winit", version = "0.14.2" }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
wasm-bindgen = { version = "0.2" }
|
wasm-bindgen = { version = "0.2" }
|
||||||
|
@ -59,8 +59,8 @@ js-sys = "0.3"
|
||||||
notify-debouncer-full = { version = "0.3.1", optional = true }
|
notify-debouncer-full = { version = "0.3.1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.14.1" }
|
bevy_log = { path = "../bevy_log", version = "0.14.2" }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_asset_macros"
|
name = "bevy_asset_macros"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Derive implementations for bevy_asset"
|
description = "Derive implementations for bevy_asset"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_audio"
|
name = "bevy_audio"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides audio functionality for Bevy Engine"
|
description = "Provides audio functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,17 +10,17 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
rodio = { version = "0.18", default-features = false }
|
rodio = { version = "0.18", default-features = false }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_color"
|
name = "bevy_color"
|
||||||
version = "0.14.2"
|
version = "0.14.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Types for representing and manipulating color values"
|
description = "Types for representing and manipulating color values"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,8 +10,8 @@ keywords = ["bevy", "color"]
|
||||||
rust-version = "1.76.0"
|
rust-version = "1.76.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bytemuck = { version = "1", features = ["derive"] }
|
bytemuck = { version = "1", features = ["derive"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_core"
|
name = "bevy_core"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides core functionality for Bevy Engine"
|
description = "Provides core functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,17 +10,17 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1", features = [
|
bevy_app = { path = "../bevy_app", version = "0.14.2", features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", features = [
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2", features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1.0", optional = true }
|
serde = { version = "1.0", optional = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_core_pipeline"
|
name = "bevy_core_pipeline"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
"Bevy Contributors <bevyengine@gmail.com>",
|
"Bevy Contributors <bevyengine@gmail.com>",
|
||||||
|
@ -22,17 +22,17 @@ smaa_luts = ["bevy_render/ktx2", "bevy_render/zstd"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
bitflags = "2.3"
|
bitflags = "2.3"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_derive"
|
name = "bevy_derive"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides derive implementations for Bevy Engine"
|
description = "Provides derive implementations for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_dev_tools"
|
name = "bevy_dev_tools"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Collection of developer tools for the Bevy Engine"
|
description = "Collection of developer tools for the Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -15,26 +15,26 @@ bevy_ui_debug = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.2" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.1" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_gizmos = { path = "../bevy_gizmos", version = "0.14.1" }
|
bevy_gizmos = { path = "../bevy_gizmos", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.14.1" }
|
bevy_input = { path = "../bevy_input", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_ui = { path = "../bevy_ui", version = "0.14.1", features = ["bevy_text"] }
|
bevy_ui = { path = "../bevy_ui", version = "0.14.2", features = ["bevy_text"] }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_text = { path = "../bevy_text", version = "0.14.1" }
|
bevy_text = { path = "../bevy_text", version = "0.14.2" }
|
||||||
bevy_state = { path = "../bevy_state", version = "0.14.1" }
|
bevy_state = { path = "../bevy_state", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_diagnostic"
|
name = "bevy_diagnostic"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides diagnostic functionality for Bevy Engine"
|
description = "Provides diagnostic functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -15,12 +15,12 @@ sysinfo_plugin = ["sysinfo"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
|
|
||||||
const-fnv1a-hash = "1.1.0"
|
const-fnv1a-hash = "1.1.0"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_dylib"
|
name = "bevy_dylib"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Force the Bevy Engine to be dynamically linked for faster linking"
|
description = "Force the Bevy Engine to be dynamically linked for faster linking"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
||||||
crate-type = ["dylib"]
|
crate-type = ["dylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_internal = { path = "../bevy_internal", version = "0.14.1", default-features = false }
|
bevy_internal = { path = "../bevy_internal", version = "0.14.2", default-features = false }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_dynamic_plugin"
|
name = "bevy_dynamic_plugin"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
|
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,7 +10,7 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
libloading = { version = "0.8" }
|
libloading = { version = "0.8" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_ecs"
|
name = "bevy_ecs"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Bevy Engine's entity component system"
|
description = "Bevy Engine's entity component system"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -18,11 +18,11 @@ default = ["bevy_reflect"]
|
||||||
serialize = ["dep:serde"]
|
serialize = ["dep:serde"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_ptr = { path = "../bevy_ptr", version = "0.14.1" }
|
bevy_ptr = { path = "../bevy_ptr", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", optional = true }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_ecs_macros = { path = "macros", version = "0.14.1" }
|
bevy_ecs_macros = { path = "macros", version = "0.14.2" }
|
||||||
|
|
||||||
petgraph = "0.6"
|
petgraph = "0.6"
|
||||||
bitflags = "2.3"
|
bitflags = "2.3"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_ecs_macros"
|
name = "bevy_ecs_macros"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
description = "Bevy ECS Macros"
|
description = "Bevy ECS Macros"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_encase_derive"
|
name = "bevy_encase_derive"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Bevy derive macro for encase"
|
description = "Bevy derive macro for encase"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.2" }
|
||||||
encase_derive_impl = "0.8"
|
encase_derive_impl = "0.8"
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_gilrs"
|
name = "bevy_gilrs"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Gamepad system made using Gilrs for Bevy Engine"
|
description = "Gamepad system made using Gilrs for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,11 +10,11 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.14.1" }
|
bevy_input = { path = "../bevy_input", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
gilrs = "0.10.1"
|
gilrs = "0.10.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_gizmos"
|
name = "bevy_gizmos"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides gizmos for Bevy Engine"
|
description = "Provides gizmos for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -14,20 +14,20 @@ webgpu = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Bevy
|
# Bevy
|
||||||
bevy_pbr = { path = "../bevy_pbr", version = "0.14.1", optional = true }
|
bevy_pbr = { path = "../bevy_pbr", version = "0.14.2", optional = true }
|
||||||
bevy_sprite = { path = "../bevy_sprite", version = "0.14.1", optional = true }
|
bevy_sprite = { path = "../bevy_sprite", version = "0.14.2", optional = true }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_gizmos_macros = { path = "macros", version = "0.14.1" }
|
bevy_gizmos_macros = { path = "macros", version = "0.14.2" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
|
|
||||||
bytemuck = "1.0"
|
bytemuck = "1.0"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_gizmos_macros"
|
name = "bevy_gizmos_macros"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Derive implementations for bevy_gizmos"
|
description = "Derive implementations for bevy_gizmos"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -13,7 +13,7 @@ proc-macro = true
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_gltf"
|
name = "bevy_gltf"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Bevy Engine GLTF loading"
|
description = "Bevy Engine GLTF loading"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -18,26 +18,26 @@ pbr_anisotropy_texture = ["bevy_pbr/pbr_anisotropy_texture"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_animation = { path = "../bevy_animation", version = "0.14.1", optional = true }
|
bevy_animation = { path = "../bevy_animation", version = "0.14.2", optional = true }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_pbr = { path = "../bevy_pbr", version = "0.14.1" }
|
bevy_pbr = { path = "../bevy_pbr", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_scene = { path = "../bevy_scene", version = "0.14.1", features = [
|
bevy_scene = { path = "../bevy_scene", version = "0.14.2", features = [
|
||||||
"bevy_render",
|
"bevy_render",
|
||||||
] }
|
] }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
gltf = { version = "1.4.0", default-features = false, features = [
|
gltf = { version = "1.4.0", default-features = false, features = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_hierarchy"
|
name = "bevy_hierarchy"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides hierarchy functionality for Bevy Engine"
|
description = "Provides hierarchy functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -16,14 +16,14 @@ reflect = ["bevy_ecs/bevy_reflect", "bevy_reflect"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1", optional = true }
|
bevy_app = { path = "../bevy_app", version = "0.14.2", optional = true }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1", optional = true }
|
bevy_core = { path = "../bevy_core", version = "0.14.2", optional = true }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", default-features = false }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
"smallvec",
|
"smallvec",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
smallvec = { version = "1.11", features = ["union", "const_generics"] }
|
smallvec = { version = "1.11", features = ["union", "const_generics"] }
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_input"
|
name = "bevy_input"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides input functionality for Bevy Engine"
|
description = "Provides input functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -20,16 +20,16 @@ serialize = ["serde", "smol_str/serde"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1", default-features = false }
|
bevy_app = { path = "../bevy_app", version = "0.14.2", default-features = false }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", default-features = false, features = [
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2", default-features = false, features = [
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1", default-features = false, features = [
|
bevy_math = { path = "../bevy_math", version = "0.14.2", default-features = false, features = [
|
||||||
"rand",
|
"rand",
|
||||||
"serialize",
|
"serialize",
|
||||||
] }
|
] }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"glam",
|
"glam",
|
||||||
"smol_str",
|
"smol_str",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_internal"
|
name = "bevy_internal"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature"
|
description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -197,44 +197,44 @@ bevy_state = ["dep:bevy_state"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_a11y = { path = "../bevy_a11y", version = "0.14.1" }
|
bevy_a11y = { path = "../bevy_a11y", version = "0.14.2" }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.1" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_state = { path = "../bevy_state", optional = true, version = "0.14.1" }
|
bevy_state = { path = "../bevy_state", optional = true, version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.14.1" }
|
bevy_input = { path = "../bevy_input", version = "0.14.2" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.14.1" }
|
bevy_log = { path = "../bevy_log", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_ptr = { path = "../bevy_ptr", version = "0.14.1" }
|
bevy_ptr = { path = "../bevy_ptr", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
# bevy (optional)
|
# bevy (optional)
|
||||||
bevy_animation = { path = "../bevy_animation", optional = true, version = "0.14.1" }
|
bevy_animation = { path = "../bevy_animation", optional = true, version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", optional = true, version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", optional = true, version = "0.14.2" }
|
||||||
bevy_audio = { path = "../bevy_audio", optional = true, version = "0.14.1" }
|
bevy_audio = { path = "../bevy_audio", optional = true, version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", optional = true, version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", optional = true, version = "0.14.3" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.14.2" }
|
||||||
bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.14.1" }
|
bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.14.2" }
|
||||||
bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.14.1" }
|
bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.14.2" }
|
||||||
bevy_render = { path = "../bevy_render", optional = true, version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", optional = true, version = "0.14.2" }
|
||||||
bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.14.1" }
|
bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.14.2" }
|
||||||
bevy_scene = { path = "../bevy_scene", optional = true, version = "0.14.1" }
|
bevy_scene = { path = "../bevy_scene", optional = true, version = "0.14.2" }
|
||||||
bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.14.1" }
|
bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.14.2" }
|
||||||
bevy_text = { path = "../bevy_text", optional = true, version = "0.14.1" }
|
bevy_text = { path = "../bevy_text", optional = true, version = "0.14.2" }
|
||||||
bevy_ui = { path = "../bevy_ui", optional = true, version = "0.14.1" }
|
bevy_ui = { path = "../bevy_ui", optional = true, version = "0.14.2" }
|
||||||
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.14.1" }
|
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.14.2" }
|
||||||
bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.14.1" }
|
bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.14.2" }
|
||||||
bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.14.1", default-features = false }
|
bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.14.2", default-features = false }
|
||||||
bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.14.1" }
|
bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.14.2" }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_log"
|
name = "bevy_log"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides logging for Bevy Engine"
|
description = "Provides logging for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -13,9 +13,9 @@ trace = ["tracing-error"]
|
||||||
trace_tracy_memory = ["dep:tracy-client"]
|
trace_tracy_memory = ["dep:tracy-client"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
|
|
||||||
tracing-subscriber = { version = "0.3.1", features = [
|
tracing-subscriber = { version = "0.3.1", features = [
|
||||||
"registry",
|
"registry",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_macro_utils"
|
name = "bevy_macro_utils"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A collection of utils for Bevy Engine"
|
description = "A collection of utils for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_math"
|
name = "bevy_math"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides math functionality for Bevy Engine"
|
description = "Provides math functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -20,7 +20,7 @@ rand = { version = "0.8", features = [
|
||||||
], default-features = false, optional = true }
|
], default-features = false, optional = true }
|
||||||
smallvec = { version = "1.11" }
|
smallvec = { version = "1.11" }
|
||||||
|
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"glam",
|
"glam",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ approx = "0.5"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
rand_chacha = "0.3"
|
rand_chacha = "0.3"
|
||||||
# Enable the approx feature when testing.
|
# Enable the approx feature when testing.
|
||||||
bevy_math = { path = ".", version = "0.14.1", features = ["approx"] }
|
bevy_math = { path = ".", version = "0.14.2", features = ["approx"] }
|
||||||
glam = { version = "0.27", features = ["approx"] }
|
glam = { version = "0.27", features = ["approx"] }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_mikktspace"
|
name = "bevy_mikktspace"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
"Benjamin Wasty <benny.wasty@gmail.com>",
|
"Benjamin Wasty <benny.wasty@gmail.com>",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_pbr"
|
name = "bevy_pbr"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Adds PBR rendering to Bevy Engine"
|
description = "Adds PBR rendering to Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -30,20 +30,20 @@ meshlet_processor = ["meshlet", "dep:meshopt", "dep:metis", "dep:itertools"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
|
|
||||||
|
|
||||||
# other
|
# other
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_ptr"
|
name = "bevy_ptr"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Utilities for working with untyped pointers in a more safe way"
|
description = "Utilities for working with untyped pointers in a more safe way"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_reflect"
|
name = "bevy_reflect"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Dynamically interact with rust types"
|
description = "Dynamically interact with rust types"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -22,9 +22,9 @@ documentation = ["bevy_reflect_derive/documentation"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_reflect_derive = { path = "derive", version = "0.14.1" }
|
bevy_reflect_derive = { path = "derive", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_ptr = { path = "../bevy_ptr", version = "0.14.1" }
|
bevy_ptr = { path = "../bevy_ptr", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
erased-serde = "0.4"
|
erased-serde = "0.4"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_reflect_derive"
|
name = "bevy_reflect_derive"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Derive implementations for bevy_reflect"
|
description = "Derive implementations for bevy_reflect"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -17,7 +17,7 @@ default = []
|
||||||
documentation = []
|
documentation = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_render"
|
name = "bevy_render"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides rendering functionality for Bevy Engine"
|
description = "Provides rendering functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -37,29 +37,29 @@ ios_simulator = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2", features = [
|
bevy_color = { path = "../bevy_color", version = "0.14.3", features = [
|
||||||
"serialize",
|
"serialize",
|
||||||
"wgpu-types",
|
"wgpu-types",
|
||||||
] }
|
] }
|
||||||
bevy_core = { path = "../bevy_core", version = "0.14.1" }
|
bevy_core = { path = "../bevy_core", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.1" }
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.14.1" }
|
bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.14.1" }
|
bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_render_macros = { path = "macros", version = "0.14.1" }
|
bevy_render_macros = { path = "macros", version = "0.14.2" }
|
||||||
bevy_time = { path = "../bevy_time", version = "0.14.1" }
|
bevy_time = { path = "../bevy_time", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
|
|
||||||
# rendering
|
# rendering
|
||||||
image = { version = "0.25.2", default-features = false }
|
image = { version = "0.25.2", default-features = false }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_render_macros"
|
name = "bevy_render_macros"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Derive implementations for bevy_render"
|
description = "Derive implementations for bevy_render"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -12,7 +12,7 @@ keywords = ["bevy"]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_scene"
|
name = "bevy_scene"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides scene functionality for Bevy Engine"
|
description = "Provides scene functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -14,17 +14,17 @@ serialize = ["dep:serde", "uuid/serde", "bevy_ecs/serialize"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1", optional = true }
|
bevy_render = { path = "../bevy_render", version = "0.14.2", optional = true }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_sprite"
|
name = "bevy_sprite"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides sprite functionality for Bevy Engine"
|
description = "Provides sprite functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -14,19 +14,19 @@ webgpu = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
bytemuck = { version = "1.5", features = ["derive"] }
|
bytemuck = { version = "1.5", features = ["derive"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_state"
|
name = "bevy_state"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Finite state machines for Bevy"
|
description = "Finite state machines for Bevy"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -17,12 +17,12 @@ bevy_app = ["dep:bevy_app"]
|
||||||
bevy_hierarchy = ["dep:bevy_hierarchy"]
|
bevy_hierarchy = ["dep:bevy_hierarchy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_state_macros = { path = "macros", version = "0.14.1" }
|
bevy_state_macros = { path = "macros", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", optional = true }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", optional = true }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1", optional = true }
|
bevy_app = { path = "../bevy_app", version = "0.14.2", optional = true }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1", optional = true }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2", optional = true }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_state_macros"
|
name = "bevy_state_macros"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
description = "Macros for bevy_state"
|
description = "Macros for bevy_state"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.2" }
|
||||||
|
|
||||||
syn = { version = "2.0", features = ["full"] }
|
syn = { version = "2.0", features = ["full"] }
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_tasks"
|
name = "bevy_tasks"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A task executor for Bevy Engine"
|
description = "A task executor for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_text"
|
name = "bevy_text"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides text functionality for Bevy Engine"
|
description = "Provides text functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -14,19 +14,19 @@ default_font = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_sprite = { path = "../bevy_sprite", version = "0.14.1" }
|
bevy_sprite = { path = "../bevy_sprite", version = "0.14.2" }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
ab_glyph = "0.2.6"
|
ab_glyph = "0.2.6"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_time"
|
name = "bevy_time"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides time functionality for Bevy Engine"
|
description = "Provides time functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -14,14 +14,14 @@ serialize = ["serde"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", features = [
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2", features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
] }
|
] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
crossbeam-channel = "0.5.0"
|
crossbeam-channel = "0.5.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_transform"
|
name = "bevy_transform"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides transform functionality for Bevy Engine"
|
description = "Provides transform functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,21 +10,21 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1", optional = true }
|
bevy_app = { path = "../bevy_app", version = "0.14.2", optional = true }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", features = [
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2", features = [
|
||||||
"bevy_reflect",
|
"bevy_reflect",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1", optional = true }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2", optional = true }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1", default-features = false }
|
bevy_math = { path = "../bevy_math", version = "0.14.2", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
serde = { version = "1", features = ["derive"], optional = true }
|
serde = { version = "1", features = ["derive"], optional = true }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1", default-features = false, features = [
|
bevy_math = { path = "../bevy_math", version = "0.14.2", default-features = false, features = [
|
||||||
"approx",
|
"approx",
|
||||||
] }
|
] }
|
||||||
approx = "0.5.1"
|
approx = "0.5.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_ui"
|
name = "bevy_ui"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A custom ECS-driven UI framework built specifically for Bevy Engine"
|
description = "A custom ECS-driven UI framework built specifically for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -10,25 +10,25 @@ keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_a11y = { path = "../bevy_a11y", version = "0.14.1" }
|
bevy_a11y = { path = "../bevy_a11y", version = "0.14.2" }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
|
bevy_asset = { path = "../bevy_asset", version = "0.14.2" }
|
||||||
bevy_color = { path = "../bevy_color", version = "0.14.2" }
|
bevy_color = { path = "../bevy_color", version = "0.14.3" }
|
||||||
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.14.1" }
|
bevy_input = { path = "../bevy_input", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"bevy",
|
"bevy",
|
||||||
] }
|
] }
|
||||||
bevy_render = { path = "../bevy_render", version = "0.14.1" }
|
bevy_render = { path = "../bevy_render", version = "0.14.2" }
|
||||||
bevy_sprite = { path = "../bevy_sprite", version = "0.14.1" }
|
bevy_sprite = { path = "../bevy_sprite", version = "0.14.2" }
|
||||||
bevy_text = { path = "../bevy_text", version = "0.14.1", optional = true }
|
bevy_text = { path = "../bevy_text", version = "0.14.2", optional = true }
|
||||||
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
|
bevy_transform = { path = "../bevy_transform", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
taffy = { version = "0.5" }
|
taffy = { version = "0.5" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_utils"
|
name = "bevy_utils"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A collection of utils for Bevy Engine"
|
description = "A collection of utils for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -16,7 +16,7 @@ ahash = "0.8.7"
|
||||||
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
||||||
web-time = { version = "1.1" }
|
web-time = { version = "1.1" }
|
||||||
hashbrown = { version = "0.14", features = ["serde"] }
|
hashbrown = { version = "0.14", features = ["serde"] }
|
||||||
bevy_utils_proc_macros = { version = "0.14.1", path = "macros" }
|
bevy_utils_proc_macros = { version = "0.14.2", path = "macros" }
|
||||||
thread_local = "1.0"
|
thread_local = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_utils_proc_macros"
|
name = "bevy_utils_proc_macros"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
description = "Bevy Utils Proc Macros"
|
description = "Bevy Utils Proc Macros"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_window"
|
name = "bevy_window"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Provides windowing functionality for Bevy Engine"
|
description = "Provides windowing functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -14,15 +14,15 @@ serialize = ["serde", "smol_str/serde", "bevy_ecs/serialize"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_a11y = { path = "../bevy_a11y", version = "0.14.1" }
|
bevy_a11y = { path = "../bevy_a11y", version = "0.14.2" }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2", features = [
|
||||||
"glam",
|
"glam",
|
||||||
"smol_str",
|
"smol_str",
|
||||||
] }
|
] }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_winit"
|
name = "bevy_winit"
|
||||||
version = "0.14.1"
|
version = "0.14.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A winit window and input backend for Bevy Engine"
|
description = "A winit window and input backend for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
|
@ -17,18 +17,18 @@ serialize = ["serde", "bevy_input/serialize", "bevy_window/serialize"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# bevy
|
# bevy
|
||||||
bevy_a11y = { path = "../bevy_a11y", version = "0.14.1" }
|
bevy_a11y = { path = "../bevy_a11y", version = "0.14.2" }
|
||||||
bevy_app = { path = "../bevy_app", version = "0.14.1" }
|
bevy_app = { path = "../bevy_app", version = "0.14.2" }
|
||||||
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
|
bevy_derive = { path = "../bevy_derive", version = "0.14.2" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.2" }
|
||||||
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.2" }
|
||||||
bevy_input = { path = "../bevy_input", version = "0.14.1" }
|
bevy_input = { path = "../bevy_input", version = "0.14.2" }
|
||||||
bevy_log = { path = "../bevy_log", version = "0.14.1" }
|
bevy_log = { path = "../bevy_log", version = "0.14.2" }
|
||||||
bevy_math = { path = "../bevy_math", version = "0.14.1" }
|
bevy_math = { path = "../bevy_math", version = "0.14.2" }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1" }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.14.2" }
|
||||||
bevy_window = { path = "../bevy_window", version = "0.14.1" }
|
bevy_window = { path = "../bevy_window", version = "0.14.2" }
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
|
bevy_utils = { path = "../bevy_utils", version = "0.14.2" }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.14.2" }
|
||||||
|
|
||||||
# other
|
# other
|
||||||
# feature rwh_06 refers to window_raw_handle@v0.6
|
# feature rwh_06 refers to window_raw_handle@v0.6
|
||||||
|
|
Loading…
Reference in a new issue