This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
0.3.0
0.3.0 - 2018-06-10
Added
- The full code of the example projects from the guides is now also available in
the repository'sexamples/
directory. - A
full-throttle
feature was added and is enabled by default. Most
dependencies are now optional and only available when this feature (or the
dependency itself) is enabled. In practice, this means you can easily opt-out
of default quicli features and only enable what you need.
Fixed
- Verbosity flag works for hyphenated package names
Changed
-
prelude::LoggerBuiler
has been renamed toprelude::LoggerBuilder
-
Now prints all causes after printing error in
main!
-
Update rayon to 1.0
-
We now use the new clap-verbosity-flag crate for adding that
-v
flag:#[derive(Debug, StructOpt)] struct Cli { #[structopt(flatten)] verbosity: Verbosity, }