endringer_git/lib.rs
1//! Git backend for endringer, powered by [`gix`].
2//!
3//! Exposes [`GitBackend`], which implements
4//! [`endringer_core::backend::VcsBackend`].
5
6pub(crate) mod blame;
7pub(crate) mod object;
8pub(crate) mod branch;
9pub(crate) mod commit;
10pub(crate) mod diff;
11pub(crate) mod tag;
12pub(crate) mod graph;
13pub(crate) mod stash;
14pub(crate) mod status;
15pub(crate) mod submodule;
16pub(crate) mod util;
17
18mod backend;
19pub use backend::GitBackend;
20
21#[cfg(test)]
22mod tests;