border-wars/Cargo.toml
Raphaël 6abd0f0c87
Some checks failed
Rust Checks / checks (push) Failing after 18s
WIP - Beggining of the menu ui, setup nodes
2024-02-14 01:49:11 +01:00

21 lines
430 B
TOML

[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.lints.rust]
missing_docs = "warn"
[workspace.lints.clippy]
missing_docs_in_private_items = "warn"
unwrap_in_result = "warn"
unwrap_used = "warn"
nursery = "warn"
# 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