From 8b80c1343628c295d188fa902c4f811e2d8aea48 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 28 May 2024 21:01:12 +0200 Subject: [PATCH] clippy advices --- rust/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 083d508..99bf299 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -8,3 +8,12 @@ license = "AGPL-3.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] + + +[lints.clippy] +correctness = "warn" +suspicious = "warn" +complexity = "warn" +perf = "warn" +style = "warn" +pedantic = "warn"