sudk/Cargo.toml
ddidderr fe1077c6c1
[code] refactor, clippy, rustfmt
- added clippy lints and fixed the resulting issues
- moved build_possible_values_db() into the new() call
- extracted the skip_db functionality into their own functions
2024-09-28 10:25:16 +02:00

20 lines
309 B
TOML

[package]
name = "sudk"
version = "0.1.0"
authors = ["ddidderr <ddidderr@paul.network>"]
edition = "2021"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
todo = "warn"
unwrap_used = "warn"
[dependencies]
[profile.release]
lto = true
debug = false
strip = true
panic = "abort"
codegen-units = 1