4 releases

0.2.1 Oct 7, 2022
0.2.0 Mar 28, 2021
0.1.1 Nov 8, 2017
0.1.0 Nov 6, 2017

#12 in #favorite

Download history 196/week @ 2024-02-02 233/week @ 2024-02-09 412/week @ 2024-02-16 103/week @ 2024-02-23 264/week @ 2024-03-01 114/week @ 2024-03-08 97/week @ 2024-03-15 186/week @ 2024-03-22 115/week @ 2024-03-29 160/week @ 2024-04-05 112/week @ 2024-04-12 50/week @ 2024-04-19 41/week @ 2024-04-26 130/week @ 2024-05-03 87/week @ 2024-05-10 101/week @ 2024-05-17

366 downloads per month
Used in 2 crates

MIT license

18KB
249 lines

progress_string

This library is primarily concerned with generating strings that can be used by your favorite terminal stream manipulation system to display a progress bar like this:

[██████████████████                                ] 35.70%

Documentation

Examples

Run an example with cargo run --example <example-name>. E.g. cargo run --example termion.

License

MIT


lib.rs:

This library is primarily concerned with generating strings that can be used by your favorite terminal stream manipulation system to display a progress bar.

Example

use std::thread::sleep;
use std::time::Duration;

const TOTAL: usize = 1000;
fn main() {
    let mut bar = progress_string::BarBuilder::new()
        .total(TOTAL)
        .include_percent()
        .build();

    println!("starting the progress");
    for i in 0..TOTAL {
        bar.replace(i);
        print!(
            "{}{}",
            termion::cursor::Left(bar.get_last_width() as u16),
            bar.to_string()
        );
        sleep(Duration::from_millis(10));
    }
    println!("\ndone with progress");
}

No runtime deps