c895599d68
пример с состояниями
35 lines
538 B
TOML
35 lines
538 B
TOML
[package]
|
|
name = "snake-game"
|
|
description = "Rust implementation of Snake Game"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.18"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
rand = "0.10"
|
|
|
|
# for examples
|
|
rand_chacha = "0.10"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
debug = false
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
debug-assertions = false
|
|
panic = "abort"
|
|
overflow-checks = false
|
|
incremental = false
|
|
strip = "symbols"
|
|
|
|
[features]
|
|
default = ["bevy/dynamic_linking"]
|