Files
upl/Cargo.toml
T
2026-05-30 16:40:44 +02:00

22 lines
299 B
TOML

[package]
name = "upl"
version = "0.1.0"
edition = "2024"
[dependencies]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
todo = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
debug = false
strip = true
lto = true
panic = "unwind"
codegen-units = 1