From 74e8a1199b1c6945d065392bfb792e27a4789e81 Mon Sep 17 00:00:00 2001 From: Szepesi Tibor Date: Mon, 5 Aug 2024 21:14:33 +0200 Subject: [PATCH] Fix lint groups --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c692dbc4..e8c1f40b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,10 +20,10 @@ license-file = "LICENSE" rust_2018_idioms = "warn" future_incompatible = "warn" nonstandard_style = "warn" -elided_lifetimes_in_paths = "allow" +elided_lifetimes_in_paths = { level = "allow", priority = 1 } [workspace.lints.clippy] -all = "warn" +all = { level = "warn", priority = -1 } dbg_macro = "warn" todo = "warn" empty_enum = "warn"