clankerdiff-git 0.1.1

Native Git repository integration for diff review
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Native, asynchronous Git repository operations for diff review.
//!
//! This crate shells out to the host's `git` executable. It is intentionally
//! separate from `clankerdiff-core` and is not available in browser builds.

mod command;
mod error;
mod path;
mod repository;

#[cfg(feature = "test-support")]
pub mod testing;

pub use error::GitError;
pub use repository::{
    GitRepository, MAX_SOURCE_ARCHIVE_BYTES, MAX_SOURCE_FILE_BYTES, RepositorySnapshot,
};