| Crates.io | progressed |
| lib.rs | progressed |
| version | 0.2.1 |
| created_at | 2023-03-03 12:09:19.034538+00 |
| updated_at | 2023-03-16 11:11:15.694332+00 |
| description | An easy to use and highly configurable library to show the progress of applications, calculations, ect. |
| homepage | |
| repository | https://github.com/jackboxx/progressed |
| max_upload_size | |
| id | 799705 |
| size | 30,799 |
An easy to use and highly configurable library to show the progress of applications, calculations, etc.
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.