<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mingling.git/mingling_picker/src/lib.rs, branch feat/picker2</title>
<subtitle>用于开发多子命令的命令行框架
</subtitle>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/'/>
<entry>
<title>feat(picker): add `Flag` value type and `Pickable` implementation</title>
<updated>2026-07-16T11:04:10+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-16T10:58:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=41fe0580212b3a681fd767d331fd8875ee59b019'/>
<id>41fe0580212b3a681fd767d331fd8875ee59b019</id>
<content type='text'>
Add a new `Flag` enum in `mingling_picker::value` that explicitly
distinguishes between an absent flag (`Inactive`) and a present flag
(`Active`), along with its `Pickable` implementation.  Rename internal
fields from `flag_*` to `arg_*` for consistency, update the default
naming case to `Kebab`, and enable the `mingling_support` feature in
workspace settings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a new `Flag` enum in `mingling_picker::value` that explicitly
distinguishes between an absent flag (`Inactive`) and a present flag
(`Active`), along with its `Pickable` implementation.  Rename internal
fields from `flag_*` to `arg_*` for consistency, update the default
naming case to `Kebab`, and enable the `mingling_support` feature in
workspace settings.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: rename PickerFlag and PickerFlagAttr to PickerArg and</title>
<updated>2026-07-16T09:05:29+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-16T09:05:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=63730b461c009a33b08f9b98c0a583f08341895c'/>
<id>63730b461c009a33b08f9b98c0a583f08341895c</id>
<content type='text'>
PickerArgAttr
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PickerArgAttr
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: rename flag module to arg</title>
<updated>2026-07-16T09:02:29+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-16T09:02:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=9285084c63f48ba26fc3a3b0ab8a51792d13b14b'/>
<id>9285084c63f48ba26fc3a3b0ab8a51792d13b14b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(picker): add builtin bool pickable and parselib matcher framework</title>
<updated>2026-07-15T11:33:45+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-15T11:31:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=8b2bbdef88f47838ed0326f5c9cf86bac84babde'/>
<id>8b2bbdef88f47838ed0326f5c9cf86bac84babde</id>
<content type='text'>
Add `Pickable` implementation for `bool` and the supporting `Matcher`
trait
with utility functions for argument matching.  Expose `pickable_needed`
and
`matcher_needed` modules for downstream trait implementors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `Pickable` implementation for `bool` and the supporting `Matcher`
trait
with utility functions for argument matching.  Expose `pickable_needed`
and
`matcher_needed` modules for downstream trait implementors.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: consolidate result and tag modules into infos</title>
<updated>2026-07-14T19:10:24+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-14T19:10:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=0344b9bd05296b879da9688b0abddc4c9c40c9ea'/>
<id>0344b9bd05296b879da9688b0abddc4c9c40c9ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(picker): add `mingling_support` feature and `is_flag` field</title>
<updated>2026-07-14T18:41:14+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-14T18:41:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=d3ac40a44c5dec3f56393876c669ce7e0819a69e'/>
<id>d3ac40a44c5dec3f56393876c669ce7e0819a69e</id>
<content type='text'>
Rename the `core` feature to `mingling_support` in `mingling_picker` and
propagate it through `mingling_picker_macros`.  Add the `is_flag` field
to `PickerTag` to indicate participation in parsing after a `--`
separator.  Remove empty `seek.rs` file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rename the `core` feature to `mingling_support` in `mingling_picker` and
propagate it through `mingling_picker_macros`.  Add the `is_flag` field
to `PickerTag` to indicate participation in parsing after a `--`
separator.  Remove empty `seek.rs` file.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: add lifetime-bound pickable support and refine type constraints</title>
<updated>2026-07-14T11:51:19+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-14T11:43:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=fdd26053228593162fd5c41df9cfbc45d0c731b9'/>
<id>fdd26053228593162fd5c41df9cfbc45d0c731b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(picker): add optional `core` feature with re-exports</title>
<updated>2026-07-14T11:10:15+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-14T11:10:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=538516a2104edba2c35b1f4ce40ec5a25589b62b'/>
<id>538516a2104edba2c35b1f4ce40ec5a25589b62b</id>
<content type='text'>
Define a `core` feature in mingling_picker that gates a new `corebind`
module and re-exports its contents. The module is propagated to the
upstream `mingling` crate under the same feature flag.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Define a `core` feature in mingling_picker that gates a new `corebind`
module and re-exports its contents. The module is propagated to the
upstream `mingling` crate under the same feature flag.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(picker): add parselib module and README</title>
<updated>2026-07-14T09:38:22+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-14T09:38:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=a18efb4aaaab51cb9ef1663f58286747e2e951ee'/>
<id>a18efb4aaaab51cb9ef1663f58286747e2e951ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: rename requirement.rs to flag.rs</title>
<updated>2026-07-14T08:56:29+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-14T08:56:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=e630ae88cf57c3b4df77565ea1bc2460f4bfff86'/>
<id>e630ae88cf57c3b4df77565ea1bc2460f4bfff86</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
