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
//! Stats report implementation.
//!
//! Purpose:
//! - 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.
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! 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;