ambition/Cargo.toml
Muhammad Nauman Raza b049c34c6f
chore: remove dynamic linking by default
Former-commit-id: 2b8b8462c2afe0957d4b124449990410cf5f787b
2023-12-03 17:03:52 +00:00

21 lines
492 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.1", features = [ "wayland" ] }
bevy_egui = "0.23.0"
lazy_static = "1.4.0"