git-stats 0.2.2

A tool for getting aggregated commit stats
Documentation
1
2
3
4
5
6
7
//! Pure logic: filtering, aggregation, sorting, and rendering. No I/O and no
//! gix dependency, so every function here is directly unit- and property-testable.

pub mod aggregate;
pub mod filter;
pub mod render;
pub mod sort;