//! # Progressed
//!
//! An easy to use and highly configurable library to show the progress of applications, calculations,
//! etc.
//!
//! # Example Usage
//! ```no_run
//! use std::{thread, time::Duration};
//! use progressed::{ProgressBar, ProgressBarStyle};
//!
//! for _ in ProgressBar::new(0..100)
//! .set_style(ProgressBarStyle::default())
//! .set_title("progress bar: ")
//! {
//! thread::sleep(Duration::from_millis(50));
//! }
//! ```
pub use LoadingSpinner;
pub use ProgressBar;
pub use UnboundProgressBar;
pub use LoadingSpinnerStyle;
pub use ProgressBarLayout;
pub use ProgressBarStyle;
pub use UnboundProgressBarStyle;