Files
another-boids-in-rust/Cargo.toml
Robert Garrett ed33b8e615 New Cargo.toml config & updated lock file
It's just the (Windows portion of the) recommendations the Bevy getting-
started guide contains.
2024-07-08 16:46:37 -05:00

23 lines
302 B
TOML

[package]
name = "bevy-testing"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = "0.14.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
# codegen-units = 1
lto = "thin"
[profile.wasm-release]
inherits = "release"
opt-level = "z"
strip = "debuginfo"