30 lines
473 B
TOML
30 lines
473 B
TOML
[package]
|
|
name = "rgg-zuma"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.18.1"
|
|
rand = "0.10.0"
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies.bevy]
|
|
version = "0.18.1"
|
|
default-features = false
|
|
features = [
|
|
"wayland",
|
|
"x11",
|
|
]
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.bevy]
|
|
version = "0.18.1"
|
|
default-features = false
|
|
features = []
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
debug = false
|