garage/src/table/lib.rs
Alex c475471e7a
All checks were successful
continuous-integration/drone/push Build is passing
Implement table gc, currently for block_ref and version only
2021-03-12 19:57:37 +01:00

20 lines
254 B
Rust

#![recursion_limit = "1024"]
#[macro_use]
extern crate log;
pub mod crdt;
pub mod schema;
pub mod util;
pub mod data;
pub mod merkle;
pub mod replication;
pub mod sync;
pub mod gc;
pub mod table;
pub use schema::*;
pub use table::*;
pub use util::*;