rBar

This is just a simple customizable loading bar that scales to the size of your terminal and has the ability to print a message

Details

At this current version (0.0.0), there is a single function: draw_bar

Args:

percentage, message, message_before

Example:

``` use rbar::draw_bar; use std::{thread, time};

// this example makes a loading bar similar to the one used by cargo fn main() { for i in 0..101 { drawbar(i as i8, "Loading...", false); thread::sleep(time::Duration::frommillis(100)); } } ```