Crates.io | rs-progress |
lib.rs | rs-progress |
version | 0.1.1 |
source | src |
created_at | 2021-07-17 16:35:38.91173 |
updated_at | 2021-08-10 18:29:46.175275 |
description | Command line Progress made easy |
homepage | |
repository | |
max_upload_size | |
id | 424085 |
size | 4,795 |
A very simple package providing a progress wraper for any iterable
use rs_progress::Progressable;
// returns sum of 45, and shows prompt on the command line
let sum = (0..10).prog().reduce(|a,b| {a+b}).unwrap();