view src/lib.rs @ 1:f7a0e4369fe7

Add LICENSE
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 19 Nov 2016 12:57:10 +0100
parents c28758ff297b
children 97e5170753af
line wrap: on
line source

extern crate crc;
extern crate integer_encoding;

mod block;
mod blockhandle;
mod iterator;
mod key_types;

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

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}