progrex 0.1.0

A simple and customizable CLI progress bar for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use progrex::ProgressBar;
use std::thread;
use std::time::Duration;

fn main() {
    let mut bar = ProgressBar::new(100);

    for i in 0..=100 {
        bar.set_progress(i);
        thread::sleep(Duration::from_millis(50));
    }

    bar.finish();
}