20 lines
306 B
TOML
20 lines
306 B
TOML
[package]
|
|
name = "snake-game"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.18"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
debug-assertions = false
|
|
panic = "abort"
|
|
overflow-checks = false
|
|
incremental = false
|
|
strip = "symbols"
|