From 7aae7f84d845e4adf1b5cec5154ee1f5daf0d245 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Sat, 9 Aug 2025 20:03:23 +0200 Subject: [PATCH] chore: enable clippy pedantic lints --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a69f980..29129ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,6 @@ path = "src/main.rs" anyhow = "1.0.98" url = "2.5.4" walkdir = "2.5.0" + +[lints.clippy] +pedantic = "warn"