aboutsummaryrefslogtreecommitdiff
path: root/examples/example-resources/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: remove legacy parser feature and migrate to picker魏曹先生2 days1-1/+1
| | | | | | | | | | The legacy `parser` feature and its module tree (`mingling::parser`, `Argument`, `Picker`, `Pickable`, etc.) have been fully removed and replaced by the `picker` feature powered by `arg-picker`. BREAKING CHANGE: Remove `parser` feature and use `picker` instead. Migration guide: Replace `features = ["parser"]` with `features = ["picker"]` and update API usage per the provided table.
* Simplify workspace exclude patterns and add workspace stanzasWeicao-CatilGrass2026-06-121-0/+2
|
* Rework examples and add entry macro for testingWeicao-CatilGrass2026-05-231-3/+4
|
* Simplify example imports to use prelude and add resources example魏曹先生2026-05-161-0/+7
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.