An extremely minimal terminal progress bar for Rust.
```Rust use std::{thread::sleep, time::Duration}; use simple_bar::ProgressBar;
let numiterations = 500; let length = 100; let eta = false let mut bar = ProgressBar::default(numiterations, length, eta);
for _ in 0..numiterations { bar.update(); sleep(Duration::frommillis(200)); } ```
This example generates the following output: