2024-07-30 04:45:52 +00:00
|
|
|
[package]
|
|
|
|
name = "boids-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-03 07:15:05 +00:00
|
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
2024-07-30 04:45:52 +00:00
|
|
|
|
2024-09-03 08:57:50 +00:00
|
|
|
[dependencies.bevy]
|
|
|
|
version = "0.14.1"
|
|
|
|
default-features = true
|
|
|
|
features = [
|
|
|
|
"bevy_core_pipeline",
|
|
|
|
"bevy_color",
|
|
|
|
"bevy_render",
|
|
|
|
"bevy_winit",
|
|
|
|
"multi_threaded",
|
|
|
|
"x11",
|
|
|
|
"wayland",
|
|
|
|
]
|
|
|
|
|
2024-07-30 04:45:52 +00:00
|
|
|
# Enable a small amount of optimization in the dev profile.
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
# Enable a large amount of optimization in the dev profile for dependencies.
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
# Enable more optimization in the release profile at the cost of compile time.
|
|
|
|
[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"
|
|
|
|
|
|
|
|
# Optimize for size in the wasm-release profile to reduce load times and bandwidth usage on web.
|
|
|
|
[profile.wasm-release]
|
|
|
|
# Default to release profile values.
|
|
|
|
inherits = "release"
|
|
|
|
# Optimize with size in mind (also try "z", sometimes it is better).
|
|
|
|
# Slightly slows compile times, great improvements to file size and runtime performance.
|
|
|
|
opt-level = "s"
|
|
|
|
# Strip all debugging information from the binary to slightly reduce file size.
|
|
|
|
strip = "debuginfo"
|