aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/dispatcher_clap.rs
Commit message (Collapse)AuthorAgeFilesLines
* Enable color feature for clap and fix help and error rendering魏曹先生4 days1-5/+6
|
* Rename injected renderer parameter from `r` to `__renderer_inner_result`Weicao-CatilGrass11 days1-1/+1
|
* Accept paths for program name parameters in macros魏曹先生2026-05-161-42/+35
| | | | | | | | | | | All proc macros (`pack!`, `dispatcher!`, `#[chain]`, `#[program_setup]`, `#[dispatcher_clap]`, `#[derive(Groupped)]`) now parse program names as `syn::Path` instead of bare `Ident`, allowing use of paths like `crate::MyProgram` or `my_crate::MyProgram`. The default program name `ThisProgram` is no longer re-exported or required as an import — generated code references `crate::ThisProgram` directly.
* Use `default_program_path()` instead of `default_program_ident()`魏曹先生2026-05-161-35/+44
|
* Replace hardcoded `ThisProgram` ident with shared constant魏曹先生2026-05-161-1/+1
|
* Add architecture overview and doc comments to macro crate魏曹先生2026-05-021-39/+0
|
* Fix feature name from clap_parser to clap in dispatcher macro魏曹先生2026-04-261-2/+2
|
* Add clap_parser feature to mingling_core with help output behavior魏曹先生2026-04-261-3/+16
| | | | config
* Remove intermediate buffer in help output魏曹先生2026-04-261-4/+1
|
* Add early return for help flag in dispatcher_clap macro魏曹先生2026-04-261-0/+6
|
* Change `help` option to accept a boolean value instead of a struct魏曹先生2026-04-261-22/+29
| | | | identifier
* Support explicit program name and help struct in dispatcher_clap魏曹先生2026-04-261-123/+210
|
* Update macro syntax from positional to keyword error argument魏曹先生2026-04-251-8/+16
|
* Add `dispatcher_clap` attribute macro behind `clap_parser` feature魏曹先生2026-04-251-0/+188