ambition/Cargo.toml
Muhammad Nauman Raza 28274807d2
feat: ambition text, fonts, and icon
Former-commit-id: 1838fc61a1e38b72ed89b2edf4b80855b10605da
2023-11-27 21:45:11 +00:00

20 lines
492 B
TOML

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