summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSunil Nimmagadda <skn@alpine.my.domain>2026-04-15 18:12:49 +0530
committerSunil Nimmagadda <skn@alpine.my.domain>2026-04-15 18:12:49 +0530
commit4d34562365c972980c31deb5745a6e280c5505ae (patch)
tree6b1dc3ffa00d01f737397e682a3fbe3bd7f7835d
parenta0dcea419a6823f5f556d4bae904d045576fa34f (diff)
Enable pendantic clippy warning.HEADmain
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b7cc026..6ad0fc3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,3 +5,8 @@ edition = "2024"
[dependencies]
socket2 = { version = "0.5.7", features = ["all"] }
+[lints.clippy]
+pedantic = "warn"
+
+[lints.rust]
+warnings = "warn"