aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
* feat(picker2): complete Picker2 prototype魏曹先生26 hours1-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Picker2 replaces the original Picker1 with a two-phase (tag → pick) + mask-bitmap architecture, decoupling argument matching from type conversion via a composable matcher pipeline. Architecture - FlagMatcher — boolean flags (--verbose) - ArgMatcher — single flag+value pairs (--name Alice) - MultiArgMatcher — multi-value flag groups (--files a.txt b.txt) - PositionalMatcher — positional arguments, respects `--` - SingleMatcher — composite for Single-type Pickables Types - Flag (Active/Inactive) — semantic bool flag value - String + 14 numeric types via SinglePickable trait - Vec<T> — greedy multi-value (all SinglePickable types) - VecUntil<T> — bounded multi-value via BoundaryCheck trait - VecUntil<T>, pick_string, pick_numbers, pick_bool, pick_flag Style system - UNIX_STYLE (kebab), POWERSHELL_STYLE (Pascal), WINDOWS_STYLE (Pascal) - naming_case auto-conversion via just_fmt integration - Style-aware separator (= for Unix, : for PS/Windows) Infrastructure - internal_repeat! macro generates PickerPattern1..=32 - SinglePickable blanket impl → Pickable - MultiPickableWithBoundary trait with greedy/bounded variants - 151 integration tests - Docs updated for parser feature
* chore(picker): add mingling_core as a dependency魏曹先生7 days1-0/+3
|
* chore: bump workspace version to 0.3.0魏曹先生7 days1-7/+7
|
* feat: add mingling-picker and mingling-picker-macros crates魏曹先生7 days1-35/+9
|
* chore: switch workspace dependencies from path to versioned 0.2.20.2.2魏曹先生8 days1-3/+44
|
* chore: bump version to 0.2.2魏曹先生8 days1-5/+5
|
* chore(deps): switch workspace crates to local paths魏曹先生8 days1-44/+3
|
* docs(changelog): prepare 0.2.1 release and add unreleased section0.2.1魏曹先生2026-07-021-3/+44
|
* chore: bump version to 0.2.1 and switch deps to path魏曹先生2026-06-301-49/+8
|
* Released Mingling 0.2.00.2.0魏曹先生2026-06-301-3/+44
|
* fix(mingling_pathf): extract CMD, error, and help types from魏曹先生2026-06-301-0/+1
| | | | dispatcher_clap
* fix(deps): bump just_template to 0.2.0 and migrate to new API魏曹先生2026-06-291-2/+14
|
* chore(deps): update Rust dependencies to latest patch versions魏曹先生2026-06-281-14/+15
|
* feat(mingling_pathf): add module path resolution and error handling魏曹先生2026-06-281-0/+3
| | | | | | | Introduce the core pathfinding infrastructure with `ModulePathMapping`, `MappingItem`, and `MinglingPathfinderError` types. Support recursive module traversal, `pub use` re-export hoisting, and standard Rust module resolution rules.
* feat(workspace): add mingling_pathf crate and pathf feature魏曹先生2026-06-281-0/+5
|
* Refactor CLI entry points and move main logic to library魏曹先生2026-06-071-2/+2
|
* Refactor mling to use new program architecture and install scripts魏曹先生2026-06-071-0/+242
|
* Bump version to 0.2.0魏曹先生2026-05-311-4/+4
|
* Switch mingling dependencies to local path references魏曹先生2026-05-311-31/+2
|
* Update CHANGELOG and switch to published crate versions0.1.9魏曹先生2026-05-291-2/+31
|
* Remove `once_cell` dependency and replace with `OnceLock`魏曹先生2026-05-211-2/+0
|
* Bump version to 0.1.9魏曹先生2026-05-181-37/+6
|
* Switch mingling_core and mingling_macros to use published crate versions0.1.8Weicao-CatilGrass2026-05-181-2/+33
|
* Remove unused `dirs` dependency from mingling_core魏曹先生2026-05-161-1/+0
|
* Remove thiserror dependency and implement error types manually魏曹先生2026-05-151-1/+0
|
* Add workspace Cargo.toml and centralize crate metadata魏曹先生2026-05-151-0/+744
|
* Remove root-level Cargo.toml and main.rs魏曹先生2026-04-281-675/+0
|
* Add async example demonstrating tokio integration魏曹先生2026-04-251-1/+5
|
* Remove redundant generic parameter from Program struct魏曹先生2026-04-251-0/+4
|
* Add workspace configuration and update dependencies魏曹先生2026-04-221-0/+667
|
* Remove workspace Cargo.lock and add per-example lockfiles魏曹先生2026-04-111-716/+0
|
* Apply clippy suggestions and remove unused serde dependency魏曹先生2026-04-111-3/+0
|
* Add example-completion and update workspace dependencies魏曹先生2026-04-111-0/+9
|
* Add debug logging feature with env_logger integration魏曹先生2026-04-111-0/+182
|
* Add shell completion script generation feature魏曹先生2026-04-111-0/+10
|
* Switch from published mingling crate to local workspace dependency魏曹先生2026-04-091-48/+7
|
* Implement mingling::this function魏曹先生2026-04-081-0/+1
|
* Bump version to 0.1.5 and use local dependencies魏曹先生2026-04-071-15/+15
|
* Add workspace configuration and examples魏曹先生2026-04-061-0/+558