aboutsummaryrefslogtreecommitdiff
path: root/examples/example-clap-binding/src
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: remove Node type and simplify dispatcher macro syntax魏曹先生2 days1-1/+1
| | | | | | | The `dispatcher!` macro no longer requires a `CMD*` dispatcher type argument; the dispatcher struct is now generated internally as `__Dispatcher{Pascal}`. The `Node` type, `node!` macro, and `Dispatcher::node()` / `clone_dispatcher()` methods are removed.
* refactor!: remove dynamic dispatcher registration API魏曹先生2 days1-1/+0
| | | | | | | Dispatchers are now always registered at compile time, removing the `with_dispatcher` / `with_dispatchers` methods and the `PathfinderConfig` API. The `dispatch_tree` feature now only controls the matching strategy (trie vs linear list).
* feat(core): move config types to public config module魏曹先生4 days1-2/+2
| | | | | | | | | Refactor program configuration types into a dedicated public `config` module under `mingling_core`, making `StructuralRendererSetting` accessible via `mingling_core::config` instead of the crate root. Update all internal references and setup modules to use the new `config::` path convention.
* fix!: rename `Groupped` to `Grouped` across the codebase魏曹先生2026-07-191-4/+4
|
* refactor(examples): migrate renderers to return RenderResult and add魏曹先生2026-07-111-8/+14
| | | | | | | | | std::io::Write import Replace r_println!/r_print! macro usage across all example renderers with explicit RenderResult construction using std::io::Write, enabling more flexible output handling and reducing reliance on macro-side effects.
* Enhance code quality across the entire codebaseWeicao-CatilGrass2026-05-311-1/+3
|
* Update docs and examples for clap binding with optional error parameter魏曹先生2026-05-291-3/+3
|
* Enable color feature for clap and fix help and error rendering魏曹先生2026-05-291-5/+10
|
* Add example for clap binding integration魏曹先生2026-05-281-0/+105