From 18c6e82c042855a2a1d3ed99225cb1eec51678d2 Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 30 Jun 2026 20:13:52 -0400 Subject: [PATCH] Remove rust-2024-compatibility lint Unlike with rust-2018-idioms lint, removing this lint is recommended. Signed-off-by: mulhern --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a5d49d8..f6269b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,6 @@ future_incompatible = { level = "deny", priority = 1 } unused = { level = "deny", priority = 2} rust_2018_idioms = { level = "deny", priority = 3 } nonstandard_style = { level = "deny", priority = 4 } -rust-2024-compatibility = { level = "allow", priority = 5 } [lints.clippy] all = { level = "deny" }