summaryrefslogtreecommitdiff
path: root/src/main.rs
AgeCommit message (Collapse)Author
2024-04-25clippy: Follow most recommendationsJoel 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-24Detect arg parser to useJoel Klinghed
Switch Parser trait to an object safe trait so guess_parser can return an boxed instance.
2024-04-24Format with rustfmtJoel Klinghed
2024-04-24args: Argument parserJoel Klinghed
Still getting used to rust
2024-04-17Initial commitJoel Klinghed