From 87c5302be420e394d3d8a2cbb6dc95df82ab6b79 Mon Sep 17 00:00:00 2001 From: Schneems Date: Tue, 30 Jul 2024 16:54:21 -0500 Subject: [PATCH] Update warning priority --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 37969616..1d9f1ee8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ unused_crate_dependencies = "warn" [workspace.lints.clippy] panic_in_result_fn = "warn" -pedantic = "warn" +# The explicit priority is required due to https://github.com/rust-lang/cargo/issues/13565. +pedantic = { level = "warn", priority = -1 } unwrap_used = "warn" module_name_repetitions = "allow"