This commit is contained in:
2026-08-22 15:52:52 +02:00
commit 54061f1eb7
157 changed files with 20279 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
[package]
name = "tdkpin-rs"
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 = true
strip = false
debug-assertions = true
overflow-checks = true
lto = false
panic = "unwind"
incremental = true
[profile.production]
inherits = "release"
debug = false
strip = true
debug-assertions = false
overflow-checks = false
lto = true
incremental = false
codegen-units = 1