garage_table/lib.rs
1#![recursion_limit = "1024"]
2#![allow(clippy::comparison_chain)]
3
4#[macro_use]
5extern crate tracing;
6
7pub mod schema;
8pub mod util;
9
10pub mod data;
11pub mod replication;
12pub mod table;
13
14mod gc;
15mod merkle;
16mod metrics;
17mod queue;
18mod sync;
19
20pub use schema::*;
21pub use table::*;
22pub use util::*;
23
24pub mod crdt {
25 pub use garage_util::crdt::*;
26}