This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
0.2.0
Fixed
- The verbosity flag of the
main!
macro now actually works! (#45)
Changed
- Upgrade structopt to 0.2:
-
No need to add structopt to you dependencies anymore (just delete the line in the
Cargo.toml
) -
Their handling of "occurrences of" parameters changed, so, for verbosity you now need to write:
#[structopt(long = "verbosity", short = "v", parse(from_occurrences))] verbosity: u8,
-