view src/lib.rs @ 157:de83256f4423

Refactor Env and PosixDiskEnv to be more dynamic. This comes closer to the original LevelDB implementation, is more flexible, and most importantly enables inclusion as member of Options.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 09 Jul 2017 20:33:20 +0200
parents 4a41aab21046
children 28698cadc1de
line wrap: on
line source

#![allow(dead_code)]

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

mod block;
mod blockhandle;
mod cache;
mod cmp;
mod disk_env;
mod env;
mod error;
mod filter;
mod filter_block;
mod key_types;
mod log;
mod memtable;
mod merging_iter;
mod options;
mod skipmap;
mod snapshot;
mod table_builder;
mod table_reader;
mod types;
mod version_edit;
mod write_batch;

mod test_util;

#[cfg(test)]
mod tests {}