diff --git a/Cargo.toml b/Cargo.toml index 4bb2200..d57dd35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,12 +15,13 @@ debug = true [workspace.dependencies] anyhow = "1.0.89" thiserror = "2.0" +derive_more = { version = "1.0.0", features = ["deref", "deref_mut"] } -tracing = "0.1.40" -tracing-subscriber = {version ="0.3.18", features = ["env-filter"]} +tracing = "0.1" +tracing-subscriber = {version ="0.3", features = ["env-filter"]} glam = {version = "0.29.0", features = ["bytemuck"]} -rand = "0.8.5" +rand = "0.9" bitflags = "2.6" thread_local = "1.1.8" @@ -46,5 +47,17 @@ rayon = "1.10" winit = {version = "0.30.5", features = ["rwh_06"]} raw-window-handle = "0.6" -egui = "0.30" -egui_winit_platform = "0.25" +egui = "0.32" +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" }