Add dev tools

This commit is contained in:
Michael Bradley 2025-05-24 18:43:09 -04:00
parent 8fc7817154
commit 4dac7c5366
Signed by: MichaelBradley
SSH key fingerprint: SHA256:o/aaeYtRubILK7OYYjYP12DmU7BsPUhKji1AgaQ+ge4
5 changed files with 74 additions and 10 deletions

View file

@ -25,10 +25,11 @@ bevy = { version = "0.16.0", default-features = false, features = [
"bevy_core_pipeline",
"bevy_remote",
"bevy_render",
"bevy_state",
"bevy_ui",
"bevy_window",
"bevy_winit",
"dynamic_linking",
"default_font",
"multi_threaded",
"std",
"wayland",
@ -44,3 +45,12 @@ rand = { version = "0.9.1", default-features = false, features = [
"thread_rng",
] }
wyrand = "0.3.2"
[features]
default = ["dev"]
dev = [
"bevy/bevy_dev_tools",
"bevy/bevy_remote",
"bevy/bevy_ui_debug",
"bevy/dynamic_linking",
]