| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Accept paths for program name parameters in macros | 魏曹先生 | 2026-05-16 | 1 | -28/+25 |
| | | | | | | | | | | | | 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-16 | 1 | -9/+9 |
| | | |||||
| * | Replace hardcoded `ThisProgram` ident with shared constant | 魏曹先生 | 2026-05-16 | 1 | -9/+13 |
| | | |||||
| * | Add architecture overview and doc comments to macro crate | 魏曹先生 | 2026-05-02 | 1 | -5/+0 |
| | | |||||
| * | Use small integer repr for gen_program! enum | 魏曹先生 | 2026-04-29 | 1 | -2/+1 |
| | | | | | Remove the default __FallBack variant and Debug derive from pack types. | ||||
| * | Move type registration to pack! and Groupped macros | 魏曹先生 | 2026-04-20 | 1 | -0/+6 |
| | | |||||
| * | Rename DefaultProgram to ThisProgram and remove ThisProgram marker | 魏曹先生 | 2026-04-09 | 1 | -10/+10 |
| | | |||||
| * | Add general renderer support with serialization formats | 魏曹先生 | 2026-04-05 | 1 | -2/+2 |
| | | |||||
| * | Replace typeid-based dispatch with enum-based dispatch | 魏曹先生 | 2026-04-01 | 1 | -31/+127 |
| | | | | | | | | | | - Add `Groupped` trait and `member_id` to `AnyOutput` - Add generic parameter `G` to `Dispatcher`, `Chain`, `Program` etc - Remove `hint` module and its marker types - Update macros to support explicit group specification - Add `gen_program` macro for generating enum-based programs - Add `GroupProcess` marker type for type-level grouping | ||||
| * | Rename chain_struct macro to pack | 魏曹先生 | 2026-03-31 | 1 | -0/+162 |
