//! Stats report implementation.
//!
//! Responsibilities:
//! - Assemble queue statistics from validated queue and done files.
//! - Coordinate summary, time-tracking, breakdown, ETA, and rendering helpers.
//! - Keep `build_stats_report` and `print_stats` as the public stats entrypoints.
//!
//! Not handled here:
//! - CLI argument parsing.
//! - Queue persistence or mutation.
//!
//! Invariants/assumptions:
//! - Queue inputs are already validated.
//! - Rendering reuses the computed `StatsReport` instead of recomputing metrics.
pub
pub use StatsReport;
pub use print_stats;
pub use build_stats_report;