| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename `NextProcess` to `Next` across the codebase | Weicao-CatilGrass | 2026-05-17 | 1 | -9/+8 |
| | | |||||
| * | Refactor chain_attr and Suppress clippy::too_many_arguments | Weicao-CatilGrass | 2026-05-17 | 1 | -185/+287 |
| | | |||||
| * | Accept paths for program name parameters in macros | 魏曹先生 | 2026-05-16 | 1 | -8/+4 |
| | | | | | | | | | | | | 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 | -4/+2 |
| | | |||||
| * | Replace hardcoded `ThisProgram` ident with shared constant | 魏曹先生 | 2026-05-16 | 1 | -3/+7 |
| | | |||||
| * | Validate single-segment types in attribute macros | 魏曹先生 | 2026-05-16 | 1 | -1/+13 |
| | | |||||
| * | Require owned type for first parameter and reference for resources | 魏曹先生 | 2026-05-16 | 1 | -2/+13 |
| | | |||||
| * | Simplify example imports to use prelude and add resources example | 魏曹先生 | 2026-05-16 | 1 | -4/+16 |
| | | | | | | | | | | Add a new example demonstrating global resource injection in chain functions, and update all existing examples to import from `mingling::prelude` instead of individual macro paths. Also add `example-resources` to the workspace exclude list. | ||||
| * | Add mutable resource injection to `#[chain]` macro | 魏曹先生 | 2026-05-16 | 1 | -18/+47 |
| | | |||||
| * | Add support for resource injection in `#[chain]` macro | 魏曹先生 | 2026-05-07 | 1 | -32/+155 |
| | | |||||
| * | Apply clippy suggestions in chain related files | Weicao-CatilGrass | 2026-05-04 | 1 | -1/+1 |
| | | |||||
| * | Enforce `NextProcess` return type in chain functions and update examples | 魏曹先生 | 2026-05-02 | 1 | -1/+37 |
| | | |||||
| * | Add architecture overview and doc comments to macro crate | 魏曹先生 | 2026-05-02 | 1 | -8/+0 |
| | | |||||
| * | se internal ugly naming convention for generated structs | 魏曹先生 | 2026-04-28 | 1 | -3/+8 |
| | | |||||
| * | Remove `marker::NextProcess` and generate it via `gen_program!` | Weicao-CatilGrass | 2026-04-27 | 1 | -59/+17 |
| | | |||||
| * | Move type registration to pack! and Groupped macros | 魏曹先生 | 2026-04-20 | 1 | -4/+1 |
| | | |||||
| * | Remove unnecessary `.into()` calls in chain functions | 魏曹先生 | 2026-04-19 | 1 | -6/+6 |
| | | |||||
| * | Support both async and sync functions with async feature enabled | 魏曹先生 | 2026-04-19 | 1 | -24/+38 |
| | | |||||
| * | Make async an optional feature | 魏曹先生 | 2026-04-19 | 1 | -30/+72 |
| | | |||||
| * | Extract chain and renderer registration into separate macros | 魏曹先生 | 2026-04-18 | 1 | -15/+54 |
| | | |||||
| * | Remove unnecessary string conversions in macro type registration | 魏曹先生 | 2026-04-15 | 1 | -4/+2 |
| | | |||||
| * | Add register_type macro and use it in chain and renderer macros | 魏曹先生 | 2026-04-15 | 1 | -3/+4 |
| | | |||||
| * | Add #[doc(hidden)] to macro-generated structs | 魏曹先生 | 2026-04-15 | 1 | -0/+1 |
| | | |||||
| * | Add completion system with shell context and dispatcher integration | 魏曹先生 | 2026-04-10 | 1 | -16/+17 |
| | | |||||
| * | Rename DefaultProgram to ThisProgram and remove ThisProgram marker | 魏曹先生 | 2026-04-09 | 1 | -5/+5 |
| | | |||||
| * | Add general renderer support with serialization formats | 魏曹先生 | 2026-04-05 | 1 | -5/+5 |
| | | |||||
| * | Replace typeid-based dispatch with enum-based dispatch | 魏曹先生 | 2026-04-01 | 1 | -18/+79 |
| | | | | | | | | | | - 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 | ||||
| * | Remove documentation from macro definitions | 魏曹先生 | 2026-03-31 | 1 | -0/+4 |
| | | |||||
| * | Add README and license files to project structure | 魏曹先生 | 2026-03-29 | 1 | -1/+1 |
| | | |||||
| * | Add fallback dispatcher for missing renderers. | 魏曹先生 | 2026-03-29 | 1 | -3/+11 |
| | | |||||
| * | Generate struct names from function names in chain and renderer macros | 魏曹先生 | 2026-03-29 | 1 | -18/+5 |
| | | |||||
| * | Completed the first preliminary usable version of the Mingling | 魏曹先生 | 2026-03-29 | 1 | -26/+10 |
| | | | | | framework. | ||||
| * | Add initial Mingling framework codebase | 魏曹先生 | 2026-03-28 | 1 | -0/+164 |
