progress

progress is meant to be a set of useful tools for showing program running progress (as its name) and steps.

View the Rustdoc

Installation

Add the following lines to your Cargo.toml dependencies section, if you use Cargo:

[dependencies] progress = "0.1.0"

Usage

``` rust use std::thread;

extern crate progress;

let bar = progress::Bar::new();

bar.setjobtitle("Working...");

for i in 0..11 { thread::sleepms(100); bar.reachpercent(i * 10); } ```

Please check documentations for more detail.

Contribution

I can't believe you would say that, but if you have any great idea or any bug report, don't be hesitate! It would be more wonderful if someone wants to write some code for this project!

Who create this

TODO list

License

MIT