endringer-git 0.13.0

Git backend for endringer (powered by gix).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Git backend for endringer, powered by [`gix`].
//!
//! Exposes [`GitBackend`], which implements
//! [`endringer_core::backend::VcsBackend`].

pub(crate) mod branch;
pub(crate) mod commit;
pub(crate) mod diff;
pub(crate) mod tag;
pub(crate) mod util;

mod backend;
pub use backend::GitBackend;

#[cfg(test)]
mod tests;