aboutsummaryrefslogtreecommitdiff
path: root/examples/example-implicit-dispatcher/src/main.rs
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: remove Node type and simplify dispatcher macro syntax魏曹先生3 hours1-3/+4
| | | | | | | The `dispatcher!` macro no longer requires a `CMD*` dispatcher type argument; the dispatcher struct is now generated internally as `__Dispatcher{Pascal}`. The `Node` type, `node!` macro, and `Dispatcher::node()` / `clone_dispatcher()` methods are removed.
* refactor!: remove dynamic dispatcher registration API魏曹先生4 hours1-9/+1
| | | | | | | Dispatchers are now always registered at compile time, removing the `with_dispatcher` / `with_dispatchers` methods and the `PathfinderConfig` API. The `dispatch_tree` feature now only controls the matching strategy (trie vs linear list).
* refactor!: rename `extra_macros` feature to `extras`feat/new-pipeline-model魏曹先生2026-08-011-1/+1
| | | | | Update all references across docs, examples, and configuration files to use the shorter `extras` feature name.
* Add implicit dispatcher macro with auto-derived names魏曹先生2026-05-241-0/+23