Files
bevy_controls/crate/bevy_controls/example/basic/Cargo.toml
T
2024-02-16 03:26:06 +03:00

23 lines
505 B
TOML

[package]
name = "basic"
version = "0.1.0"
edition = "2021"
[features]
x11 = ["bevy/x11", "bevy/bevy_winit"]
wayland = ["bevy/wayland", "bevy/bevy_winit"]
windows = ["bevy/bevy_winit"]
[dependencies]
bevy = { version = "0.12.1", default-features = false, features = [
"bevy_asset",
"bevy_text",
"bevy_ui",
"dynamic_linking",
"default_font",
]}
bevy_controls = { path = "./../../" }
bevy_controls_derive = { path = "./../../../bevy_controls_derive" }
strum = "0.25.0"
strum_macros = "0.25.3"