An easy to use and highly configurable library to show the progress of applications, calculations, etc.
``` rust use std::{thread, time::Duration}; use progressed::{ProgressBar, ProgressBarStyle};
fn main() { for _ in ProgressBar::new(0..100) .setstyle(ProgressBarStyle::default()) .settitle("progress bar: ") { thread::sleep(Duration::from_millis(50)); } } ```
See the documentation for more detailed information.