filebuffer 0.3.0

Fast and simple file reading
Documentation
[package]
name = "filebuffer"
version = "0.3.0"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
license = "Apache-2.0"
readme = "readme.md"
keywords = ["non-blocking", "mmap", "file", "input", "prefetch"]
categories = ["asynchronous", "filesystem", "memory-management"]
description = "Fast and simple file reading"
repository = "https://github.com/ruuda/filebuffer"
documentation = "https://docs.rs/filebuffer"

[badges]
travis-ci = { repository = "ruuda/filebuffer", branch = "v0.3.0" }
appveyor = { repository = "ruuda/filebuffer", branch = "v0.3.0" }

[target.'cfg(unix)'.dependencies]
libc = "0.2.6"

[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.1"
winapi = "0.2.5"

[dev-dependencies]
rust-crypto = "0.2.34"

# Version 0.3.36 of the gcc crate (a dependency of rust-crypto) breaks backwards
# compatibility with Rust 1.4 through 1.6, so force a less recent version. This
# is only for building the application, so dependencies of Filebuffer are not
# affected by this override.
gcc = "= 0.3.35"

# Version 0.1.36 of the time crate (a dependency of rust-crypto) breaks
# backwards compatibility with Rust 1.4 through 1.7, so force a less recent
# version. This is only for building the application, so dependencies of
# Filebuffer are not affected by this override.
time = "= 0.1.35"