💤

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].

Screenshot

toml [dependencies] zzz = "0.3"

Features

Cargo Features

Usage examples

Adding a progress bar to an iterator

```rust use zzz::ProgressBarIterExt as _;

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

If size_hint() for the iterator defines an upper bound, it is automatically taken as the target. Otherwise, a progress indicator ("spinner") is displayed.

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

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

Manually creating a spinner (for unknown target progress indicator)

```rust use zzz::ProgressBar;

let mut pb = ProgressBar::spinner(); for _ in 0..5678 { pb.add(1); } ```