view src/lib.rs @ 39:e38f5617df6f

Move BlockHandle into its own module
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 12 Jun 2016 20:05:40 +0200
parents 4b7f20805274
children 30947e6a9cee
line wrap: on
line source


#![allow(dead_code)]

extern crate crc;
extern crate rand;
extern crate integer_encoding;

mod block;
mod blockhandle;
mod log;
mod memtable;
mod skipmap;
mod snapshot;
mod types;

pub use types::Comparator;

#[cfg(test)]
mod tests {}