From f4a37c973229d57f9282571f16f48dbdfbf7c0b9 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 25 Sep 2025 07:48:24 -0700 Subject: [PATCH] Silence a build warning on newer clippy versions --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index d8670fe34..d0f259ab5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,6 +34,9 @@ // Debugging features shouldn't be in checked-in code. #![warn(clippy::todo)] #![warn(clippy::dbg_macro)] +// I frequently develop difftastic on a newer rustc than the MSRV, so +// this isn't relevant. +#![allow(renamed_and_removed_lints)] mod conflicts; mod constants;