sstable 0.11.1

Sorted String Tables, an on-disk format for storing immutable maps consisting of string,string pairs, and retrieving values by key efficiently. This crate also features bloom filters, checksums and skipping bad blocks. It is based on the code implemented for the rusty_leveldb crate.
Documentation
#[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 crate::cmp::{Cmp, DefaultCmp};
pub use crate::error::{Result, Status, StatusCode};
pub use crate::options::{CompressionType, Options};
pub use crate::table_builder::TableBuilder;
pub use crate::table_reader::{Table, TableIterator};
pub use crate::types::{current_key_val, RandomAccess, SSIterator};

#[cfg(test)]
mod test_util;