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 branch;
8pub(crate) mod commit;
9pub(crate) mod diff;
10pub(crate) mod tag;
11pub(crate) mod graph;
12pub(crate) mod status;
13pub(crate) mod util;
14
15mod backend;
16pub use backend::GitBackend;
17
18#[cfg(test)]
19mod tests;