esvc-core 0.1.0

Core of ESVC (event sourcing version control)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![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::*;