22 lines
331 B
TOML
22 lines
331 B
TOML
|
cargo-features = ["codegen-backend"]
|
||
|
|
||
|
[package]
|
||
|
name = "avoid-rs"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
bevy = { version = "0.14", features = ["wav"] }
|
||
|
fastrand = "*"
|
||
|
|
||
|
[profile.dev]
|
||
|
codegen-backend = "cranelift"
|
||
|
lto = false
|
||
|
incremental = true
|
||
|
|
||
|
[profile.release]
|
||
|
codegen-units = 1
|
||
|
lto = true
|
||
|
strip = true
|
||
|
opt-level = 3
|