From 730f5310b1c1add05e3783a640abfe404e5b72df Mon Sep 17 00:00:00 2001 From: Thomas Zahner Date: Wed, 24 Apr 2024 16:38:06 +0200 Subject: [PATCH] Disable lint with false positive --- lychee-bin/src/stats.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lychee-bin/src/stats.rs b/lychee-bin/src/stats.rs index d412cdd..325a631 100644 --- a/lychee-bin/src/stats.rs +++ b/lychee-bin/src/stats.rs @@ -1,3 +1,6 @@ +// Disable lint, clippy thinks that InputSource has inner mutability, but this seems like a flase positive +#![allow(clippy::mutable_key_type)] + use std::collections::{HashMap, HashSet}; use crate::archive::Suggestion;