esvc-core 0.1.0

Core of ESVC (event sourcing version control)
Documentation
#![forbid(unsafe_code)]

pub use bincode;

#[doc(no_inline)]
pub use esvc_traits::Engine;

mod hash;
pub use hash::*;

mod graph;
pub use graph::*;

mod dot;
pub use dot::*;

mod workcache;
pub use workcache::*;