aboutsummaryrefslogtreecommitdiff
path: root/src/table/lib.rs
blob: b0153e9a76fb6aa00b43441c8a3da81fe5e7d57d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![recursion_limit = "1024"]
#![allow(clippy::comparison_chain)]

#[macro_use]
extern crate tracing;

mod metrics;
pub mod schema;
pub mod util;

pub mod data;
mod gc;
mod merkle;
pub mod replication;
mod sync;
pub mod table;

pub use schema::*;
pub use table::*;
pub use util::*;

pub mod crdt {
	pub use garage_util::crdt::*;
}