garage_table 0.8.1

Table sharding and replication engine (DynamoDB-like) for the Garage object store
Documentation
#![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::*;
}