aboutsummaryrefslogblamecommitdiff
path: root/src/table/lib.rs
blob: fdf114a6239cc1ec2827356f8a6308a1d3b41dff (plain) (tree)
1
2
3
4
5
6
7
8
9
                            
                                   

            
                     
 
               

             
             


                    

           

            
         
 
                  
                 
                



                                     
#![recursion_limit = "1024"]
#![allow(clippy::comparison_chain)]

#[macro_use]
extern crate tracing;

pub mod schema;
pub mod util;

pub mod data;
pub mod replication;
pub mod table;

mod gc;
mod merkle;
mod metrics;
mod queue;
mod sync;

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

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