ambition/Cargo.toml
Muhammad Nauman Raza 020d429de4 chore: rename cargo/flake project
Former-commit-id: 8c57dfb81906b4a9543ddca6e85208bf1b312ee4
2023-11-28 13:46:44 +00:00

20 lines
490 B
TOML

[package]
name = "ambition"
version = "0.1.0"
edition = "2021"
# Squeeze out more performance for `release` builds - very slow compile times
[profile.release]
lto = "thin"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = { version = "0.12.0", features = [ "wayland", "dynamic_linking" ] }
lazy_static = "1.4.0"