aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/program_setup.rs
Commit message (Collapse)AuthorAgeFilesLines
* Accept paths for program name parameters in macros魏曹先生2026-05-161-2/+2
| | | | | | | | | | | 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-11/+5
|
* Replace hardcoded `ThisProgram` ident with shared constant魏曹先生2026-05-161-3/+7
|
* Add architecture overview and doc comments to macro crate魏曹先生2026-05-021-5/+0
|
* Add async example demonstrating tokio integration魏曹先生2026-04-251-3/+3
|
* Remove redundant generic parameter from Program struct魏曹先生2026-04-251-4/+4
|
* Add #[doc(hidden)] to macro-generated structs魏曹先生2026-04-151-0/+1
|
* Simplify setup macro to accept any program parameter type魏曹先生2026-04-141-59/+7
|
* Rename DefaultProgram to ThisProgram and remove ThisProgram marker魏曹先生2026-04-091-5/+5
|
* Add general renderer support with serialization formats魏曹先生2026-04-051-0/+199