progress

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

View the Rustdoc

Examples

progress::Bar

Installation

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

[dependencies] progress = "0.2"

Or if you want to use this GitHub repo directly (warning: you'll download some extra nonsense e.g. gifs), add following line to your Cargo.toml:

[dependencies] progress = { git = "https://github.com/TheKK/progress.git" }

Usage

Here shows you how to crate and use progress bar.

``` 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 want to share or any bug to 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, see LICENSE