dsort/Cargo.toml
Matthew Ryan Dillon ebee9a5eaf 1.0.0
no functional changes with this release, but technically breaking as it has an explicit "license" associated with the project.
2025-04-05 06:42:57 -04:00

20 lines
No EOL
463 B
TOML

[package]
name = "dsort"
version = "1.0.0"
edition = "2021"
license = "unlicense"
[dependencies]
bevy = "0.14"
bevy_egui = "0.29"
vsort = "0.2"
[profile.release]
# Compile the entire crate as one unit.
# Slows compile times, marginal improvements.
codegen-units = 1
# Do a second optimization pass over the entire program, including dependencies.
# Slows compile times, marginal improvements.
lto = "thin"
# cargo build --target=x86_64-pc-windows-gnu --release