garage/src/table/lib.rs
Alex 8d63738cb0
All checks were successful
continuous-integration/drone/push Build is passing
Checkpoint: add merkle tree in data table
2021-03-11 13:47:21 +01:00

19 lines
260 B
Rust

#![recursion_limit = "1024"]
#[macro_use]
extern crate log;
pub mod crdt;
pub mod schema;
pub mod util;
pub mod merkle;
pub mod table;
pub mod table_fullcopy;
pub mod table_sharded;
pub mod table_sync;
pub use schema::*;
pub use table::*;
pub use util::*;