From ad8a7a5901d4e7fd0336bdfdb3f9cdbfe1aca761 Mon Sep 17 00:00:00 2001 From: Narthana Epa Date: Sat, 24 Aug 2024 12:01:53 +0530 Subject: [PATCH] Set clippy to pedantic by default --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e7c0f8d..ab39bc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,3 +17,7 @@ regex = "1.10.6" rand_chacha = "0.3.1" rayon = "1.10.0" statrs = "0.17.1" + +[lint.clippy] +all = "deny" +pedantic = "deny"