From 6c97b2b47fb6374747d0c8183e1e093e52dcb9ac Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 13 Jun 2024 20:48:09 +0200 Subject: [PATCH] Fix new clippy lint --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7eb79b5..552a153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,9 +19,9 @@ tokio-util = "0.7.8" tracing = { version = "0.1.37", default-features = false, features = ["std"] } [workspace.lints.rust] +rust_2018_idioms = { level = "warn", priority = -1 } missing_debug_implementations = "warn" missing_docs = "warn" -rust_2018_idioms = "warn" semicolon_in_expressions_from_macros = "warn" unreachable_pub = "warn" unused_import_braces = "warn"