32 lines
617 B
TOML
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"
|