progress_bar 1.4.0

A simple and elegant crate for displaying progress bars in the terminal. It can estimate and display the remaining time, and includes logging utilities that integrate cleanly with your progress bar output.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

pub mod pb;
pub mod style;
pub mod global;

#[cfg(feature = "logger")]
pub(crate) mod logger;

pub use style::*;
pub use global::*;

#[cfg(feature = "logger")]
pub use logger::*;