endringer-core 0.32.0

Core types and VCS backend trait for endringer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types and VCS backend trait for endringer.
//!
//! This crate is an implementation detail. Most users depend on the
//! [`endringer`] facade crate, which re-exports everything from here.
//!
//! Depend on `endringer-core` directly only when implementing a custom
//! [`VcsBackend`].

pub mod backend;
pub mod error;
pub mod types;

pub use error::{Error, NotFoundKind, Result};