progressed

Crates.ioprogressed
lib.rsprogressed
version0.2.1
created_at2023-03-03 12:09:19.034538+00
updated_at2023-03-16 11:11:15.694332+00
descriptionAn easy to use and highly configurable library to show the progress of applications, calculations, ect.
homepage
repositoryhttps://github.com/jackboxx/progressed
max_upload_size
id799705
size30,799
(Jackboxx)

documentation

README

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

Commit count: 46

cargo fmt