<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mingling.git/arg_picker, branch unreleased</title>
<subtitle>用于开发多子命令的命令行框架
</subtitle>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/'/>
<entry>
<title>feat(arg_picker): add mingling_support feature flag</title>
<updated>2026-07-18T17:17:20+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-18T17:17:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=3518ba185a46358e9d476983213c74678ceba917'/>
<id>3518ba185a46358e9d476983213c74678ceba917</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: migrate mingling-specific picker code into mingling crate</title>
<updated>2026-07-18T16:27:16+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-18T16:22:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=5e460470f6ea2ce31a403b6e936ec2fe8f45312a'/>
<id>5e460470f6ea2ce31a403b6e936ec2fe8f45312a</id>
<content type='text'>
BREAKING CHANGE: Remove `mingling_support` feature from arg-picker
crate. The
`EntryPicker` trait and `corebind` module are now part of the mingling
crate
directly, and `build_pattern1` is now a public method.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING CHANGE: Remove `mingling_support` feature from arg-picker
crate. The
`EntryPicker` trait and `corebind` module are now part of the mingling
crate
directly, and `build_pattern1` is now a public method.
</pre>
</div>
</content>
</entry>
<entry>
<title>test(or_route): update panic message in test</title>
<updated>2026-07-17T22:23:53+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T22:23:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=145e792e9bbda304312a9f5189bf033644e83263'/>
<id>145e792e9bbda304312a9f5189bf033644e83263</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(picker): extract pick_flag helper to reduce duplication</title>
<updated>2026-07-17T22:21:52+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T22:21:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=5fe4a4e40341aaa2b66fa1cf123d674f61d3e370'/>
<id>5fe4a4e40341aaa2b66fa1cf123d674f61d3e370</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 From impls for PickerArgs to Vec conversions</title>
<updated>2026-07-17T21:46:28+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T21:46:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=a9b395d90f4a9f7c8a0b12e39faea46029445e00'/>
<id>a9b395d90f4a9f7c8a0b12e39faea46029445e00</id>
<content type='text'>
Implement `From&lt;PickerArgs&gt;` for `Vec&lt;String&gt;` and
`From&lt;&amp;PickerArgs&gt;` for `Vec&lt;&amp;str&gt;`, enabling seamless
conversion from the picker arguments enum to owned or
borrowed string vectors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implement `From&lt;PickerArgs&gt;` for `Vec&lt;String&gt;` and
`From&lt;&amp;PickerArgs&gt;` for `Vec&lt;&amp;str&gt;`, enabling seamless
conversion from the picker arguments enum to owned or
borrowed string vectors.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(arg_picker): add preprocessing and postprocessing priority levels</title>
<updated>2026-07-17T21:31:20+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T21:31:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=e89608805efe7a24ab72b8030bc307b6a4f6d6fc'/>
<id>e89608805efe7a24ab72b8030bc307b6a4f6d6fc</id>
<content type='text'>
Add `Begin`, `Preprocess`, `Final`, and `Postprocess` variants to
`PickerArgAttr` enum, and implement `Pickable` for `PickerArgs` as a
built-in picker that consumes all remaining unclaimed arguments at
lowest priority. Expose `is_masked` and `build_masked_args` as public
functions for use by custom pickers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `Begin`, `Preprocess`, `Final`, and `Postprocess` variants to
`PickerArgAttr` enum, and implement `Pickable` for `PickerArgs` as a
built-in picker that consumes all remaining unclaimed arguments at
lowest priority. Expose `is_masked` and `build_masked_args` as public
functions for use by custom pickers.
</pre>
</div>
</content>
</entry>
<entry>
<title>test(value_flag): replace assert! with assert_eq! for clarity</title>
<updated>2026-07-17T13:11:23+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T13:11:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=7db233f12349c5e5d9d6190bba80063bb8b6d3bc'/>
<id>7db233f12349c5e5d9d6190bba80063bb8b6d3bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(mingling): move crate-level docs to separate lib.md</title>
<updated>2026-07-17T03:56:35+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T03:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=5ea1a7f930cbb764b46d451706458c118c848c40'/>
<id>5ea1a7f930cbb764b46d451706458c118c848c40</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: add symlinked license files to subcrates</title>
<updated>2026-07-17T03:18:06+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T03:18:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=11e287e931f7fcda65708846a1cb9bc1cc05de13'/>
<id>11e287e931f7fcda65708846a1cb9bc1cc05de13</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 `mingling_picker` to `arg_picker`</title>
<updated>2026-07-17T03:11:28+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-17T03:08:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/catilgrass/mingling.git/commit/?id=79ec6878877f0fd9246d67d3cd4f8cc2d1200150'/>
<id>79ec6878877f0fd9246d67d3cd4f8cc2d1200150</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
