1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! `loaders` is a zero-dependency Rust crate for progress bars, spinners, and
//! loading indicators in terminal applications.
//!
//! It is designed for the common case to be tiny while keeping the rendering,
//! styling, iterator, and multi-progress APIs flexible enough for real CLI
//! tools.
//!
//! # Quick Start
//!
//! ```rust
//! use loaders::ProgressBar;
//!
//! let pb = ProgressBar::hidden();
//! pb.set_length(3);
//! for _ in 0..3 {
//! pb.inc(1);
//! }
//! pb.finish_with_message("done");
//! ```
//!
//! Guides and examples live at <https://muhammad-fiaz.github.io/loaders>.
pub use ;
pub use ProgressIterator;
pub use MultiProgress;
pub use Spinner;
pub use ;
pub use ;
pub use Theme;
pub use DrawTarget;