jab 0.0.1

JAB is a database state management tool, think of it as git but for database. You can commit your current db state and checkout to your previous db state.
Documentation
1
2
3
4
use std::error::Error;

pub type DynStdError = Box<dyn Error>;
pub type ResultDynError<T> = Result<T, failure::Error>;