Skip to main content

git_stats/
lib.rs

1//! `git-stats` aggregates per-author commit statistics from a git repository.
2//!
3//! The crate follows an A-Frame architecture: pure [`logic`] and gix-backed
4//! [`repo`] infrastructure are peers, coordinated by the thin [`app`] layer.
5//! Both sides communicate through the plain value objects in [`model`].
6
7pub mod app;
8pub mod cli;
9pub mod error;
10pub mod logic;
11pub mod model;
12pub mod repo;
13
14pub use error::Error;