Files
bevy_controls/crate/bevy_controls/example/basic/Cargo.toml
T
2026-09-03 22:57:39 +00:00

32 lines
617 B
TOML

[package]
name = "basic"
version = "0.1.0"
edition = "2021"
[build]
target-dir = "../../../../target"
[features]
x11 = ["bevy/x11"]
wayland = ["bevy/wayland"]
windows = ["bevy/bevy_winit"]
[dependencies]
bevy = { version = "0.16.1", default-features = false, features = [
"bevy_asset",
"bevy_text",
"bevy_state",
"bevy_ui",
"bevy_window",
"bevy_winit",
#"dynamic_linking",
"default_font",
]}
bevy_controls = { path = "./../../" }
bevy_controls_derive = { path = "./../../../bevy_controls_derive" }
strum_macros = "0.26.2"
strum = "0.26.2"
[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"