Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

0.3.0

Compare
Choose a tag to compare
@killercup killercup released this 10 Jun 11:03
· 34 commits to master since this release
d2ad07c

0.3.0 - 2018-06-10

Added

  • The full code of the example projects from the guides is now also available in
    the repository's examples/ 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 to prelude::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,
    }