1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
extern crate percent_encoding;
extern crate plotlib;
extern crate rand;
extern crate rocksdb;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate siphasher;
extern crate sled;
#[macro_use]
extern crate trackable;

pub mod kvs;
pub mod plot;
pub mod task;
pub mod workload;

pub type Result<T> = std::result::Result<T, trackable::error::Failure>;