libvctrl 0.1.0

A robust, content-addressed version control engine for arbitrary data, designed for embedding into applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod codec;
pub mod command;
pub mod diff;
pub mod domain;
pub mod error;
pub mod hashing;
pub mod merge;
pub mod storage;

pub use codec::*;
pub use command::*;
pub use diff::*;
pub use domain::*;
pub use error::VctrlError;
pub use hashing::*;
pub use merge::*;
pub use storage::*;