lazy-pbar

Crates.iolazy-pbar
lib.rslazy-pbar
version0.2.0
sourcesrc
created_at2022-09-18 23:03:56.697485
updated_at2022-10-03 01:26:05.699436
descriptionAn extremely lazy interface for indicatif, simplifying my one use case (Wrapping an iterator)
homepage
repositoryhttps://github.com/JYudelson1/lazy-pbar
max_upload_size
id668829
size3,013
(JYudelson1)

documentation

README

lazy-pbar

A very lazy wrapper for any ProgressIterator with known length.

Style heavily borrowing from tqdm.

Example:

use lazy_pbar::pbar;

let mut x = 0;
for i in pbar(0..1_000_000) {
  x = i;
}
Commit count: 10

cargo fmt