From 3e1cc2e58e292e45f61ca06c25d47ca5a6c9497f Mon Sep 17 00:00:00 2001 From: Daniil Polyakov Date: Mon, 9 Mar 2026 21:42:04 +0300 Subject: [PATCH] feat: add complexity clippy lints --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9f891dae..5cf44e15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -259,3 +259,6 @@ clippy.significant-drop-tightening = "allow" # Correctness clippy.correctness = { level = "deny", priority = -1 } + +# Complexity +clippy.complexity = { level = "deny", priority = -1 }