💤

Crates.io docs.rs MIT licensed Apache 2.0 licensed

The progress bar with sane defaults that doesn't slow down your loops. Inspired by [tqdm].

toml [dependencies] zzz = { version = "0.1" }

Features

Cargo Features

Usage examples

Adding a progress bar to an iterator: ```rust use zzz::ProgressBarIterExt as _;

// vvvvvvvv for _ in (0..1000).into_iter().progress() { // ... } ```

Manually creating and advancing a progress bar: ```rust use zzz::ProgressBar;

let mut pb = ProgressBar::with_target(1234); for i in 0..1234 { // ... pb.add(1); } ```