view src/lib.rs @ 31:6807859c7538

Implement end-to-end tests for Block, BlockBuilder, BlockIter
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 12 Jun 2016 14:30:53 +0200
parents e0331fa88bfb
children 4b7f20805274
line wrap: on
line source


#![allow(dead_code)]

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


mod block;
mod log;
mod memtable;
mod skipmap;
mod types;

pub use types::Comparator;

#[cfg(test)]
mod tests {}