Silence a build warning on newer clippy versions

pull/881/head
Wilfred Hughes 2025-09-25 07:48:24 +07:00
parent 7cfa40bf80
commit f4a37c9732
1 changed files with 3 additions and 0 deletions

@ -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;