view src/lib.rs @ 23:eaa9fd7c72ba

Implement LogReader
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 12 Jun 2016 10:08:44 +0200
parents 040ded0d855b
children e0331fa88bfb
line wrap: on
line source


#![allow(dead_code)]

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

pub use skipmap::Comparator;

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

#[cfg(test)]
mod tests {
}