<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mingling.git/mingling_pathf/test/src/lib.rs, branch main</title>
<subtitle>用于开发多子命令的命令行框架
</subtitle>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/'/>
<entry>
<title>feat(pathf): add dispatch tree config and pass feature to analyzer</title>
<updated>2026-06-29T06:12:24+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-29T06:12:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=2fa18e2190fb3c17892e13cb06d330e707dc05ec'/>
<id>2fa18e2190fb3c17892e13cb06d330e707dc05ec</id>
<content type='text'>
Add `PathfinderConfig` struct to control dispatch tree extraction,
and wire `use_dispatch_tree` through `DispatcherPattern`,
`init_with_config`,
and `analyze_and_build_type_mapping_for`. Expose config and wrapper
from `mingling_core` under the `pathf` feature.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `PathfinderConfig` struct to control dispatch tree extraction,
and wire `use_dispatch_tree` through `DispatcherPattern`,
`init_with_config`,
and `analyze_and_build_type_mapping_for`. Expose config and wrapper
from `mingling_core` under the `pathf` feature.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(dispatcher): use full command name for entry generation</title>
<updated>2026-06-28T20:26:44+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-28T20:26:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=7ff051635eac6b10fcd66a1878563c8155a661a4'/>
<id>7ff051635eac6b10fcd66a1878563c8155a661a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: remove outdated type mapping test</title>
<updated>2026-06-28T01:26:46+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-28T01:26:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=bccda06413a2f9d2b26183f8ccb759cd748a9fe5'/>
<id>bccda06413a2f9d2b26183f8ccb759cd748a9fe5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(pathf): add build-time type path resolution system</title>
<updated>2026-06-28T01:06:08+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-28T01:06:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=748c14588cf1c31c8b8d60a9c94349c0173ef607'/>
<id>748c14588cf1c31c8b8d60a9c94349c0173ef607</id>
<content type='text'>
Add `mingling_pathf` sub-crate and `pathf` feature for automatic
resolution of Mingling type module paths at build time. Scans source
files, identifies macro invocations via pattern matchers, and generates
mapping files consumed by `gen_program!()`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `mingling_pathf` sub-crate and `pathf` feature for automatic
resolution of Mingling type module paths at build time. Scans source
files, identifies macro invocations via pattern matchers, and generates
mapping files consumed by `gen_program!()`.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(test): rename test and update pattern analyzer usage</title>
<updated>2026-06-27T22:38:24+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-27T22:38:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=0414c4642c0fc98a5c5bae37943ac93ef75da60a'/>
<id>0414c4642c0fc98a5c5bae37943ac93ef75da60a</id>
<content type='text'>
Rename `test_pattern_analyzer` to clarify it runs once and update the
analyzer initialization to match the new API without adding a pattern
manually
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rename `test_pattern_analyzer` to clarify it runs once and update the
analyzer initialization to match the new API without adding a pattern
manually
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(mingling_pathf): add pattern analyzer module for struct detection</title>
<updated>2026-06-27T22:21:56+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-27T22:21:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=0f84a88d0b2c9205ec1b3cbfa18ffe05478e5a64'/>
<id>0f84a88d0b2c9205ec1b3cbfa18ffe05478e5a64</id>
<content type='text'>
Add a `PatternAnalyzer` with an `AnalyzePattern` trait to detect and
extract struct declarations from Rust source files, supporting nested
inline modules.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a `PatternAnalyzer` with an `AnalyzePattern` trait to detect and
extract struct declarations from Rust source files, supporting nested
inline modules.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: move test fixtures into `test_proj` subdirectory</title>
<updated>2026-06-27T22:02:37+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-27T22:02:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=da5e1a21fce9a303767af4a6d3cab8f0d66e5c87'/>
<id>da5e1a21fce9a303767af4a6d3cab8f0d66e5c87</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test(mingling-pathf): add integration tests for module path analysis</title>
<updated>2026-06-27T21:59:43+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-06-27T21:59:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=9e0372f9d148a7c340cfab93727a7a3d3db023df'/>
<id>9e0372f9d148a7c340cfab93727a7a3d3db023df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
