quicli v0.2.0 Release Notes

Release Date: 2018-02-11 // about 6 years ago
  • 🛠 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,