aboutsummaryrefslogtreecommitdiff
path: root/mingling_picker/src/result.rs
Commit message (Collapse)AuthorAgeFilesLines
* refactor: consolidate result and tag modules into infos魏曹先生48 hours1-245/+0
|
* feat(mingling_picker): rename FormatError to ParseError and add parse魏曹先生3 days1-18/+204
| | | | | | | | | module Remove unnecessary Pickable trait bounds on PickerResult and its From implementations. Introduce a new `parse` module with macro-generated parse stubs for up to 32 tuple types.
* feat(picker): add core trait, types, and builder macro for argument魏曹先生3 days1-0/+59
parsing Implement the foundational `mingling_picker` library along with its companion `mingling_picker_macros` crate. The picker provides: - `Pickable` trait for parsing types from raw strings - `PickerResult` enum modeling parse outcomes - `Picker` struct for storing and indexing command-line arguments - `PickerRequirement` struct for declarative parameter definitions - `PickerPattern` family (1..32) of typed pattern structs via the `internal_repeat` proc macro - `req!` proc macro as a succinct builder for `PickerRequirement` Re-export `mingling_picker::macros::*` from the `mingling` crate when the `picker` feature is enabled, replacing the previous wildcard re-export of `mingling_macros`.