border-wars/Cargo.toml
Raphaël 479f83cca7
Some checks failed
Rust Checks / checks (push) Failing after 4s
commit
2024-03-03 00:40:47 +01:00

22 lines
456 B
TOML

[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.lints.rust]
missing_docs = "warn"
[workspace.lints.clippy]
type_complexity = "allow"
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