aboutsummaryrefslogtreecommitdiff
path: root/vendor/indicatif/examples/single.rs
blob: 6e921e54f5c96c0ccaf0052eff8a8a65d942448a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::thread;
use std::time::Duration;

use indicatif::ProgressBar;

fn main() {
    let pb = ProgressBar::new(1024);
    for _ in 0..1024 {
        thread::sleep(Duration::from_millis(5));
        pb.inc(1);
    }
    pb.finish_with_message("done");
}