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

#5 in #terminal-progress-bar

Download history 215/week @ 2025-04-30 35/week @ 2025-05-07 38/week @ 2025-05-14 108/week @ 2025-05-21 55/week @ 2025-05-28 7/week @ 2025-06-04 24/week @ 2025-06-11 28/week @ 2025-06-18 87/week @ 2025-06-25 31/week @ 2025-07-02 30/week @ 2025-07-09 23/week @ 2025-07-16 33/week @ 2025-07-23 57/week @ 2025-07-30 27/week @ 2025-08-06 47/week @ 2025-08-13

168 downloads per month
Used in 2 crates

MIT license

18KB
249 lines

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");
}


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

No runtime deps