| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-04-25 | clippy: Follow most recommendations | Joel Klinghed | |
| It also tried to replace while let Some(arg) = args.next() { with: for arg in args.by_ref() { but that doesn't work on trait objects. | |||
| 2024-04-25 | args: Borrow string when printing it | Joel Klinghed | |
| Seems like a better default, unsure if it made any difference here tho. | |||
| 2024-04-25 | args: Add tests | Joel Klinghed | |
| Also minor fix in LongOnlyParser, support "-" as argument. | |||
| 2024-04-24 | Detect arg parser to use | Joel Klinghed | |
| Switch Parser trait to an object safe trait so guess_parser can return an boxed instance. | |||
| 2024-04-24 | args: Fix order in LongOnlyParser#print_help | Joel Klinghed | |
| Use options for iter as the order is stable (not true for long hash map) | |||
| 2024-04-24 | Format with rustfmt | Joel Klinghed | |
| 2024-04-24 | args: Argument parser | Joel Klinghed | |
| Still getting used to rust | |||
| 2024-04-17 | Initial commit | Joel Klinghed | |
