We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d561e20 commit 45fdfa0Copy full SHA for 45fdfa0
lychee-bin/src/stats.rs
@@ -59,6 +59,8 @@ impl ResponseStats {
59
let Response(source, ResponseBody { ref status, .. }) = response;
60
self.increment_status_counters(status);
61
62
+ // Disable lint, clippy thinks that InputSource has inner mutability, but this seems like a flase positive
63
+ #[allow(clippy::mutable_key_type)]
64
match status {
65
_ if status.is_failure() => {
66
let fail = self.fail_map.entry(source).or_default();
0 commit comments