hcn/Cargo.toml

23 lines
330 B
TOML
Raw Normal View History

[package]
name = "hcn"
version = "1.0.0-multithread"
edition = "2021"
[dependencies]
itertools = "0.13"
2024-09-12 20:14:55 +02:00
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
2024-09-12 20:14:55 +02:00
pedantic = { level = "warn", priority = -1 }
todo = "warn"
unwrap_used = "warn"
[profile.release]
lto = true
debug = false
strip = true
2024-09-12 20:14:55 +02:00
panic = "unwind"
codegen-units = 1