fast_rich/progress/mod.rs
1//! Progress bars, spinners, and status indicators.
2//!
3//! This module provides:
4//! - Progress bars with percentage, speed, ETA
5//! - Spinners for indeterminate progress
6//! - Status context for showing work in progress
7//! - `track()` helper for iterating with progress
8
9mod bar;
10mod columns;
11mod spinner;
12mod spinner_data;
13mod status;
14mod track;
15
16pub use bar::{Progress, ProgressBar, Task};
17
18pub use columns::*;
19pub use spinner::{Spinner, SpinnerStyle};
20pub use status::{with_status, Status};
21pub use track::track;