[package] name = "mio-pipe" description = "Crate for using Unix pipes with Mio." version = "0.1.1" authors = ["Thomas de Zeeuw "] license = "MIT" documentation = "https://docs.rs/mio-pipe" repository = "https://github.com/Thomasdezeeuw/mio-pipe" readme = "README.md" keywords = ["pipe", "mio"] include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE"] edition = "2018" [badges] travis-ci = { repository = "Thomasdezeeuw/mio-pipe", branch = "master" } [dependencies] libc = "0.2.62" # Need `SourceFd` from `os-util`. mio = { version = "0.7.0", features = ["os-util"] } [dev-dependencies] # Need `Poll` from `os-poll`. mio = { version = "0.7.0", features = ["os-poll"] }