view src/lib.rs @ 77:ab56112d7cc6

Remove seek_to_last again The reverse iterator story isn't that nice at the moment, and seek_to_last is only needed when we want to iterate in a reversed manner. If needed, this can be added again later.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 17 Jul 2016 16:39:39 +0200
parents 94ea2222178f
children 3e4f2805ab57
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 merging_iter;
mod options;
mod skipmap;
mod snapshot;
mod table_builder;
mod types;
mod write_batch;

mod test_util;

pub use types::Comparator;

#[cfg(test)]
mod tests {}