fast-rich 0.3.2

A Rust port of Python's Rich library for beautiful terminal formatting
Documentation
//! Progress bars, spinners, and status indicators.
//!
//! This module provides:
//! - Progress bars with percentage, speed, ETA
//! - Spinners for indeterminate progress
//! - Status context for showing work in progress
//! - `track()` helper for iterating with progress

mod bar;
mod columns;
mod spinner;
mod spinner_data;
mod status;
mod track;

pub use bar::{Progress, ProgressBar, Task};

pub use columns::*;
pub use spinner::{Spinner, SpinnerStyle};
pub use status::{with_status, Status};
pub use track::track;