From 21b1872871a2af6483bfe8667749a9d3197b45de Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 17 Jul 2026 04:18:27 +0800 Subject: feat(mingling, mingling_picker): add feature constants and fix formatting Add `MINGLING_CORE` and `MINGLING_MACROS` feature flag constants to the mingling crate, mirroring existing pattern for other features Reorganize imports and reformat closures in mingling_picker for consistent style --- mingling_picker/src/pickable/multi_pickable.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mingling_picker/src/pickable') diff --git a/mingling_picker/src/pickable/multi_pickable.rs b/mingling_picker/src/pickable/multi_pickable.rs index 0ab0508..84a8068 100644 --- a/mingling_picker/src/pickable/multi_pickable.rs +++ b/mingling_picker/src/pickable/multi_pickable.rs @@ -1,8 +1,7 @@ use crate::{ + Pickable, PickerArg, PickerArgAttr, PickerArgResult, SinglePickable, TagPhaseContext, matcher_needed::Matcher, parselib::{MultiArgMatcher, ParserStyle}, - Pickable, PickerArg, PickerArgAttr, PickerArgResult, - SinglePickable, TagPhaseContext, }; /// Boundary check for multi-value positional parameters. -- cgit