A simple progress bar for Rust 🦀 projects. I created that because there was a long processes in some project and I didn't know what was the progression.
Add from command line.
cargo add rpb@0.1.1
Or add this to your Cargo.toml file.
```
[dependencies]
rpb = "0.1.1"
rpb = { git = "https://github.com/disco07/rpb.git", branch = "main" }
```
```rust fn main() { use rpb::bar::Bar; use std::thread::sleep; use std::time;
let mut bar = Bar::new(200);
for _i in 0..200 {
bar.add(1);
sleep(time::Duration::from_millis(50))
}
}
```
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.