Skip to main content

argus_gitpulse/
lib.rs

1//! Git history analysis: hotspots, temporal coupling, and knowledge silos.
2//!
3//! Mines git history using git2 to detect high-churn hotspots, temporally
4//! coupled files, and knowledge silos (bus factor) to identify fragile code
5//! areas that deserve extra review attention.
6
7pub mod coupling;
8pub mod hotspots;
9pub mod mining;
10pub mod ownership;