Files
another-boids-in-rust/Cargo.toml
Robert Garrett 0965760650
Some checks failed
check / stable / fmt (push) Successful in 38s
check / nightly / doc (push) Successful in 2m51s
check / ubuntu / stable / features (push) Successful in 2m58s
check / ubuntu / 1.88.0 (push) Failing after 41s
Bump to Bevy 0.18, mark -dev1 prerelease
Bevy, Avian2d, and bevy_egui have all been bumped to the latest
versions.

MSRV is now Rust 1.89.0 because that's the minimum for Bevy (including a
couple of its dependencies).
2026-01-22 16:47:09 -06:00

37 lines
553 B
TOML

[package]
name = "another-boids-in-rust"
version = "0.10.0-dev1"
edition = "2024"
license = "AGPL-3.0-only"
rust-version = "1.89.0"
[dependencies]
avian2d = "0.5"
bevy = "0.18"
bevy-inspector-egui = "0.36"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
# codegen-units = 1
lto = "fat"
[profile.mini]
inherits = "release"
lto = true
opt-level = "z"
codegen-units = 1
strip = "symbols"
panic = "abort"
[profile.wasm-release]
codegen-units = 1
inherits = "release"
lto = "fat"
opt-level = "z"
strip = "symbols"