Files
another-boids-in-rust/Cargo.toml
Robert Garrett 9f37addb5f This is only a Boids project, now. Drop others.
The examples and learning plugins have outlived their usefulness, and
this repo already has substantial history in being a boids plugin. I'm
renaming the crate (and repo, but that isn't visible to git) to treat
this simply as a boids repo.
2024-07-11 08:33:33 -05:00

24 lines
334 B
TOML

[package]
name = "another-boids-in-rust"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = "0.14.0"
bevy_spatial = "0.9.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"