view src/lib.rs @ 43:08b29b687320

More cleanups of unused code.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 11 Mar 2018 16:12:39 +0100
parents d2559e2729e4
children 088c7924e3f0
line wrap: on
line source

extern crate crc;
extern crate integer_encoding;
extern crate snap;
#[cfg(test)]
#[macro_use]
extern crate time_test;

mod block;
mod block_builder;
mod blockhandle;
mod cache;
pub mod error;
pub mod filter;
mod filter_block;
mod table_block;
mod types;

mod cmp;
mod options;
mod table_builder;
mod table_reader;

pub use cmp::{Cmp, DefaultCmp};
pub use options::Options;
pub use types::{current_key_val, SSIterator};
pub use table_builder::TableBuilder;
pub use table_reader::{Table, TableIterator};

#[cfg(test)]
mod test_util;