From adfd0191667b5b244b85dfa05c4235373738a30a Mon Sep 17 00:00:00 2001 From: Akulij Date: Mon, 28 Apr 2025 18:07:34 +0300 Subject: [PATCH] add clippy lint rule --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 137e829..a007bfc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,3 +18,6 @@ mongodb = "3.2.3" serde = { version = "1.0.219", features = ["derive", "serde_derive"] } teloxide = { version = "0.14.0", features = ["macros", "postgres-storage-nativetls"] } tokio = { version = "1.44.1", features = ["rt-multi-thread", "macros"] } + +[lints.clippy] +print_stdout = "warn"