Silence warning on older clippy versions

pull/876/head
Wilfred Hughes 2025-08-28 09:40:11 +07:00
parent b5a4df1efc
commit 1ec5badfe0
1 changed files with 3 additions and 0 deletions

@ -19,6 +19,9 @@
// implementation does not consider the mutable fields, so it is still
// correct.
#![allow(clippy::mutable_key_type)]
// manual_unwrap_or_default was added in Rust 1.79, so earlier versions of
// clippy complain about allowing it.
#![allow(unknown_lints)]
// It's sometimes more readable to explicitly create a vec than to use
// the Default trait.
#![allow(clippy::manual_unwrap_or_default)]