From 20253556eacdcb068210254b540f47a4522fc6f5 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 16 Jul 2026 19:42:28 +0800 Subject: feat(parselib): implement ArgMatcher for named and positional args Implement `on_match_one` and `on_match_all` for `ArgMatcher`, supporting named flags (with eq-mode and short flags), positional arguments, end-of-options marker (`--`), and case-insensitive matching --- mingling_picker/test/src/test.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'mingling_picker/test/src/test.rs') diff --git a/mingling_picker/test/src/test.rs b/mingling_picker/test/src/test.rs index 29d52ec..eb53229 100644 --- a/mingling_picker/test/src/test.rs +++ b/mingling_picker/test/src/test.rs @@ -1,3 +1,4 @@ +mod arg_matcher_test; mod basic_test; mod route_test; mod style_test; -- cgit