Skip to main content

git_stats/logic/
mod.rs

1//! Pure logic: filtering, aggregation, sorting, and rendering. No I/O and no
2//! gix dependency, so every function here is directly unit- and property-testable.
3
4pub mod aggregate;
5pub mod filter;
6pub mod render;
7pub mod sort;