rs-progress 0.1.0

Command line Progress made easy
Documentation

A very simple package providing a progress wraper for any iterable

// returns sum of 45, and shows prompt on the command line
let sum = (0..10).prog().reduce(|a,b| {a+b}).unwrap();