dependencies
This commit is contained in:
parent
fd4e92c69e
commit
760366a0e4
23
Cargo.toml
23
Cargo.toml
|
|
@ -15,12 +15,13 @@ debug = true
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1.0.89"
|
anyhow = "1.0.89"
|
||||||
thiserror = "2.0"
|
thiserror = "2.0"
|
||||||
|
derive_more = { version = "1.0.0", features = ["deref", "deref_mut"] }
|
||||||
|
|
||||||
tracing = "0.1.40"
|
tracing = "0.1"
|
||||||
tracing-subscriber = {version ="0.3.18", features = ["env-filter"]}
|
tracing-subscriber = {version ="0.3", features = ["env-filter"]}
|
||||||
|
|
||||||
glam = {version = "0.29.0", features = ["bytemuck"]}
|
glam = {version = "0.29.0", features = ["bytemuck"]}
|
||||||
rand = "0.8.5"
|
rand = "0.9"
|
||||||
bitflags = "2.6"
|
bitflags = "2.6"
|
||||||
thread_local = "1.1.8"
|
thread_local = "1.1.8"
|
||||||
|
|
||||||
|
|
@ -46,5 +47,17 @@ rayon = "1.10"
|
||||||
winit = {version = "0.30.5", features = ["rwh_06"]}
|
winit = {version = "0.30.5", features = ["rwh_06"]}
|
||||||
raw-window-handle = "0.6"
|
raw-window-handle = "0.6"
|
||||||
|
|
||||||
egui = "0.30"
|
egui = "0.32"
|
||||||
egui_winit_platform = "0.25"
|
egui_winit_platform = "0.27"
|
||||||
|
|
||||||
|
bevy_ecs = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy", features = ["multi_threaded", "trace"]}
|
||||||
|
bevy_window = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_asset = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_reflect = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_utils = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_derive = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_math = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_transform = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_hierarchy = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_tasks = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
bevy_app = { version = "0.17.0-dev", git = "https://github.com/bevyengine/bevy" }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue