hcn/Cargo.toml
2024-09-12 20:25:22 +02:00

22 lines
299 B
TOML

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