1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
// #![deny(warnings, missing_docs)]
// #![cfg_attr(test, feature(plugin))]
// #![cfg_attr(test, plugin(clippy))]

//! Continuously read,write to disk, using random offsets and lengths.

// #[macro_use]
extern crate failure;

/// Synchronous implementation.
mod sync;

pub use sync::*;