1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![deny(missing_docs)]

//! `castor` provides content addressable storage on top of [LMDB](https://github.com/LMDB/lmdb)
//! using [kv](https://github.com/zshipko/rust-kv)

extern crate kv;
extern crate sha2;

mod token;
mod store;
mod txn;

pub use token::Token;
pub use store::Store;
pub use txn::Txn;