From 7785c514137d99b1584d7b158015587a18f76525 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 1 Apr 2026 20:18:24 +0800 Subject: Add allow attribute for clippy::type_complexity lint --- mingling_core/src/program/exec.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/mingling_core/src/program/exec.rs b/mingling_core/src/program/exec.rs index 9c80c4a..29cfa1d 100644 --- a/mingling_core/src/program/exec.rs +++ b/mingling_core/src/program/exec.rs @@ -68,6 +68,7 @@ where } /// Match user input against registered dispatchers and return the matched dispatcher and remaining arguments. +#[allow(clippy::type_complexity)] fn match_user_input( program: &Program, ) -> Result<(&Box>, Vec), ProgramInternalExecuteError> -- cgit