Files
another-boids-in-rust/Cargo.toml
Robert Garrett 3a680a4ea2 Added bevy_spatial for boid interactions
I'm finally starting on the actual Boids flocking algorithm parts.
I don't want to iterate over all the things, and Bevy doesn't seem to
have fast collision testing yet, so I've reached for bevy_spatial to
track my Boids.
2024-07-09 11:56:52 -05:00

24 lines
325 B
TOML

[package]
name = "bevy-testing"
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"