garage/src/table/lib.rs

21 lines
278 B
Rust
Raw Normal View History

2020-04-24 10:10:01 +00:00
#![recursion_limit = "1024"]
2021-05-02 23:13:08 +02:00
#![allow(clippy::comparison_chain)]
2020-04-24 10:10:01 +00:00
#[macro_use]
extern crate log;
pub mod crdt;
2020-07-08 16:10:53 +02:00
pub mod schema;
pub mod util;
pub mod data;
2021-03-26 19:41:46 +01:00
mod gc;
mod merkle;
2021-03-11 16:54:15 +01:00
pub mod replication;
2021-03-26 19:41:46 +01:00
mod sync;
2020-04-23 17:05:46 +00:00
pub mod table;
2020-07-08 16:10:53 +02:00
pub use schema::*;
2020-07-08 17:34:37 +02:00
pub use table::*;
pub use util::*;