docgen-diff 0.6.0

Git-based change tracking for docgen, the Cargo-only static documentation-site generator
Documentation
1
2
3
4
5
6
7
8
//! Error type for the git-driven layer.

/// Errors raised while walking git history or reading blob content.
#[derive(Debug, thiserror::Error)]
pub enum DiffError {
    #[error("git error: {0}")]
    Git(#[from] git2::Error),
}