From ea6dda762aa147ebcbc29b269e65b78dd046f4dd Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 16 Jul 2026 04:08:09 +0800 Subject: feat(mingling_picker): replace bool Matcher with FlagMatcher Rename `bool_matcher` module to `flag_matcher` and introduce a dedicated `FlagMatcher` struct, moving matching logic away from the `bool` type itself --- mingling_picker/src/parselib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mingling_picker/src/parselib.rs') diff --git a/mingling_picker/src/parselib.rs b/mingling_picker/src/parselib.rs index 5950c9d..cf550b7 100644 --- a/mingling_picker/src/parselib.rs +++ b/mingling_picker/src/parselib.rs @@ -1,4 +1,5 @@ -mod bool_matcher; +mod flag_matcher; +pub use flag_matcher::*; mod style; pub use style::*; -- cgit