26 lines
510 B
TOML
26 lines
510 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.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"
|