view src/lib.rs @ 55:07f4454f6ea3

Implement tests for WriteBatch
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 19 Jun 2016 17:10:19 +0200
parents 29b03ddbc8bc
children 528985d33b75
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 disk_env;
mod env;
mod filter;
mod filter_block;
mod log;
mod memtable;
mod options;
mod skipmap;
mod snapshot;
mod types;
mod write_batch;

pub use types::Comparator;

#[cfg(test)]
mod tests {}