consta 1.0.1

Git contribution statistics tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::commit::Commit;
use std::path::PathBuf;

#[derive(Debug)]
pub struct RepoStats {
    pub path: PathBuf,
    pub commits_amount: usize,
    pub added: usize,
    pub deleted: usize,
    pub commits: Vec<Commit>,
}