progressed 0.2.1

An easy to use and highly configurable library to show the progress of applications, calculations, ect.
Documentation

Progressed

License: MIT

An easy to use and highly configurable library to show the progress of applications, calculations, etc.

Example Usage

use std::{thread, time::Duration};
use progressed::{ProgressBar, ProgressBarStyle};

fn main() {
for _ in ProgressBar::new(0..100)
    .set_style(ProgressBarStyle::default())
    .set_title("progress bar: ")
    {
           thread::sleep(Duration::from_millis(50));
    }
}

See the documentation for more detailed information.

Alternatives