aboutsummaryrefslogtreecommitdiff
path: root/examples/example-completion/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: replace build.rs with compile-time macro build steps魏曹先生28 hours1-12/+0
| | | | | | | | | | | | | BREAKING CHANGE: Replace the `build`/`builds` feature system with compile-time macro-driven generation. `gen_program!()` now automatically invokes `build_comp!()` and `build_pathf!()` when the `comp`/`pathf` features are enabled, eliminating the need for `build.rs` and `[build-dependencies]` blocks. This removes the `build` feature, the `mingling::build` module, and all related build-time API functions. Completion scripts are now written to `{target_directory}/mingling/` instead of `target/release/`. The `mingling_cli` uses `build_comp!("mling")` for its custom binary name.
* refactor!: remove legacy parser feature and migrate to picker魏曹先生43 hours1-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.
* feat(core): rename `builds` feature to `build`魏曹先生2026-07-231-2/+2
| | | | | | | Replace the `builds` feature with `build` across the crate, keeping a backward-compatible alias for the old name. Update all internal visibility from `#[doc(hidden)] pub mod` to `pub(crate) mod` and reorganize the `__private` module into a dedicated `private.rs`.
* 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/+21
|
* Make async an optional feature魏曹先生2026-04-191-1/+0
|
* Remove workspace Cargo.lock and add per-example lockfiles魏曹先生2026-04-111-2/+2
|
* Remove serde dependency from example projects魏曹先生2026-04-111-1/+0
|
* Add example-completion and update workspace dependencies魏曹先生2026-04-111-0/+9