From 12f2efaa97008d3dabf444cb4773f7d4a72ea625 Mon Sep 17 00:00:00 2001 From: echobt Date: Mon, 2 Feb 2026 05:53:32 +0000 Subject: [PATCH] fix(clippy): allow derivable_impls lint Many types in the codebase have manual Default implementations for documentation purposes or code clarity. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9ebdeb46..194f123d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -395,6 +395,8 @@ unnecessary_sort_by = "allow" iter_without_into_iter = "allow" # Allow modules with the same name as parent (test modules pattern) module_inception = "allow" +# Allow manual Default impl instead of derive (sometimes needed for doc comments) +derivable_impls = "allow" [profile.release] lto = "fat"