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