From 2ccda0cd5f81909fddc74d95f960f781a64bcae1 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 22 Sep 2026 18:17:41 +0200 Subject: refactor(engine-reflection): allow type complexity clippy lint --- engine-reflection/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/engine-reflection/src/lib.rs b/engine-reflection/src/lib.rs index 23e6b8e..3ec26cb 100644 --- a/engine-reflection/src/lib.rs +++ b/engine-reflection/src/lib.rs @@ -1,4 +1,5 @@ #![deny(clippy::all, clippy::pedantic)] +#![allow(clippy::type_complexity)] use std::alloc::Layout; use std::any::{type_name, Any, TypeId}; use std::borrow::Cow; -- cgit v1.2.3-18-g5258