random-access-disk 1.1.0

Continuously read,write to disk, using random offsets and lengths
Documentation
language: rust
cache: cargo
rust: stable

before_script:
  - rustup component add rustfmt
  - rustup component add clippy
  - cargo fmt --version
  - cargo clippy --version
  - rustup update nightly

script:
  - cargo +nightly check --all-targets --verbose
  - cargo fmt -- --check
  - cargo build --verbose
  - cargo test  --verbose
  - cargo clippy -- -D clippy::all