ambition/Cargo.toml
Muhammad Nauman Raza 8f2fa51b8b feat: add bevy_egui library
Former-commit-id: 402d1a763d55c87589c5eb38889c9817ee60a9df
2023-11-30 13:51:10 +00:00

21 lines
511 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", "dynamic_linking" ] }
bevy_egui = "0.23.0"
lazy_static = "1.4.0"