simple_bar 0.2.1

Bare minimal crate that displays a progress bar in the terminal
Documentation
# Simple Bar
[crates.io](crates.io/crates/simple_barhttps://crates.io/crates/simple_bar)

An extremely minimal terminal progress bar for Rust.

## Example

```Rust
use std::{thread::sleep, time::Duration};
use simple_bar::ProgressBar;

let num_iterations = 500;
let length = 100;
let eta = false
let mut bar = ProgressBar::default(num_iterations, length, eta);

for _ in 0..num_iterations {
    bar.update();
    sleep(Duration::from_millis(200));
}
```

This example generates the following output:
![above code generates](https://mie-res.netlify.app/simple_bar_example.png)