view src/lib.rs @ 18:186231a15135

Add TODO: Write blocks directly to disk while building
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 23 Nov 2016 13:22:47 +0000
parents 6a28e181a306
children 04468480cdcf
line wrap: on
line source

extern crate crc;
extern crate integer_encoding;

mod block;
mod blockhandle;

pub mod iterator;
pub mod options;
pub mod table_builder;
pub mod table_reader;

pub use iterator::StandardComparator;
pub use iterator::SSIterator;
pub use options::{BuildOptions, ReadOptions};

pub use table_builder::TableBuilder;
pub use table_reader::{Table, TableIterator};