random-access-memory 0.2.1

Continuously read,write to memory using random offsets and lengths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![feature(external_doc)]
#![doc(include = "../README.md")]
// #![cfg_attr(test, feature(plugin))]
// #![cfg_attr(test, plugin(clippy))]

#[macro_use]
extern crate failure;

/// Synchronous implementation.
mod sync;

pub use sync::*;