[package] name = "acts-of-gods" version = "0.1.0" edition = "2021" [dependencies] bevy = { version = "0.14", features = ["file_watcher", "dynamic_linking"] } bevy_mod_picking = "0.20" thiserror = "1" nom = "7" # Entity Uuid parsing # TODO: Remove this uuid = "1.7.0" clap = { version = "4", features = ["derive"] } chrono = { version = "0.4" } # 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 # Prioritize binary size for wasm [profile.wasm-release] inherits = "release" opt-level = "z" lto = "fat" codegen-units = 1