aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/help.rs
Commit message (Collapse)AuthorAgeFilesLines
* Accept paths for program name parameters in macros魏曹先生2026-05-161-1/+1
| | | | | | | | | | | 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.
* Validate single-segment types in attribute macros魏曹先生2026-05-161-0/+5
|
* Add architecture overview and doc comments to macro crate魏曹先生2026-05-021-19/+0
|
* se internal ugly naming convention for generated structs魏曹先生2026-04-281-3/+7
|
* Add help system with `#[help]` macro and `HelpRequest` trait魏曹先生2026-04-251-0/+202