pacak
pacak
> I tried to add line breaks in the "Allowing / Denying Multiple Lints" section but couldn't find a way https://github.com/web-infra-dev/oxc/pull/760
> You can customize help for --help switch using OptionParser::help_parser https://github.com/web-infra-dev/oxc/pull/760
> This led me to the thought "We can not present OR logic with enum and arguments", so I stopped reaching for similar solutions again where enums appear. https://github.com/pacak/bpaf/discussions/271
Currently `external` supports explicit or implicit path to a function, support function call directly as well? with function `no_bool` to generate `--foo` and `--no-foo` this would allow to write something...
I agree with the description of bpaf here. I just spent ten minutes looking at its docs and I'm completely overwhelmed. There is no ready-to-run example in the top-level crate...
Currently it splits things mechanically looking at symbols only without handling possible values. os string `-oa=b` can be parsed as either `-o a=b` or `-o -a=b` depending of type of...
- Currently `some` and `many` are monomorphic and produce `Vec`, it should be possible to consume them into any `FromIterator` type
`Parser` trait comes with a limited amount of folding: - `many`/`some` to take all the items - `count` as a shortcut for `many().map(|c| c.len())` - `last` to get the last...