rs-progress 0.1.1

Command line Progress made easy
Documentation
A very simple package providing a progress wraper for any iterable



```rs

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();
```