| Age | Commit message (Collapse) | Author |
|
Only support for finding and reading central directory yet.
|
|
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.
|
|
Seems like a better default, unsure if it made any difference here
tho.
|
|
Also minor fix in LongOnlyParser, support "-" as argument.
|
|
Switch Parser trait to an object safe trait so guess_parser can
return an boxed instance.
|
|
Use options for iter as the order is stable (not true for long
hash map)
|
|
|
|
Still getting used to rust
|
|
|