Skip to main content

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 status;
14pub(crate) mod util;
15
16mod backend;
17pub use backend::GitBackend;
18
19#[cfg(test)]
20mod tests;