barad-dur 0.13.0

The all-seeing repository analyzer
Documentation
1
2
3
4
5
6
7
8
9
use crate::snapshot::{Author, Commit, CommitInterner};

/// Result of collecting commits — includes deduplicated author list.
#[non_exhaustive]
pub struct CommitCollection {
    pub commits: Vec<Commit>,
    pub authors: Vec<Author>,
    pub interner: CommitInterner,
}