From f749a47804cd296a3059cd3f8079c62dbaa5fdc0 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 7 Aug 2026 07:26:48 +0900 Subject: refactor: merge split inherent impl blocks into one per type Enable clippy::multiple_inherent_impl and fix the 21 sites it reports. Types whose inherent methods were spread across two or three impl blocks now keep them in a single block; only the impl headers move, no method bodies change. Co-Authored-By: Claude Opus 5 (1M context) --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 31a8c998..311b57df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,4 +60,5 @@ diverging_sub_expression = "allow" if_same_then_else = "allow" large_enum_variant = "allow" module_inception = "allow" +multiple_inherent_impl = "warn" type_complexity = "allow" -- cgit v1.3.1