garage/src/table/lib.rs

27 lines
342 B
Rust
Raw Permalink Normal View History

2020-04-24 10:10:01 +00:00
#![recursion_limit = "1024"]
2021-05-02 21:13:08 +00:00
#![allow(clippy::comparison_chain)]
2020-04-24 10:10:01 +00:00
#[macro_use]
extern crate tracing;
2020-04-24 10:10:01 +00:00
2020-07-08 14:10:53 +00:00
pub mod schema;
pub mod util;
pub mod data;
pub mod replication;
pub mod table;
2021-03-26 18:41:46 +00:00
mod gc;
mod merkle;
mod metrics;
mod queue;
2021-03-26 18:41:46 +00:00
mod sync;
2020-04-23 17:05:46 +00:00
2020-07-08 14:10:53 +00:00
pub use schema::*;
2020-07-08 15:34:37 +00:00
pub use table::*;
pub use util::*;
pub mod crdt {
pub use garage_util::crdt::*;
}