view src/lib.rs @ 6:e1ae33383eb8

Use new int-enc crate; remove unnecessary assert! in skipmap
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 09 Jun 2016 20:00:24 +0200
parents ca4d8694fb33
children 0e88ae259968
line wrap: on
line source

extern crate rand;
extern crate integer_encoding;

pub use skipmap::Comparator;

mod memtable;
mod skipmap;
mod types;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}