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 42/week @ 2023-11-30 184/week @ 2023-12-07 120/week @ 2023-12-14 147/week @ 2023-12-21 207/week @ 2023-12-28 124/week @ 2024-01-04 295/week @ 2024-01-11 151/week @ 2024-01-18 78/week @ 2024-01-25 197/week @ 2024-02-01 177/week @ 2024-02-08 462/week @ 2024-02-15 107/week @ 2024-02-22 172/week @ 2024-02-29 184/week @ 2024-03-07 109/week @ 2024-03-14

575 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