[package]
name = "io-lifetimes"
version = "1.0.0-rc1"
description = "A low-level I/O ownership and borrowing library"
authors = ["Dan Gohman <dev@sunfishcode.online>"]
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
keywords = ["api", "io"]
categories = ["os", "rust-patterns"]
edition = "2018"
repository = "https://github.com/sunfishcode/io-lifetimes"
include = ["src", "build.rs", "Cargo.toml", "COPYRIGHT", "LICENSE*", "/*.md"]
[dependencies]
fs-err = { version = "2.6.0", optional = true }
[target.'cfg(not(target_os = "wasi"))'.dependencies]
os_pipe = { version = "1.0.0", optional = true }
async-std = { version = "1.12.0", optional = true }
tokio = { version = "1.6.0", features = ["io-std", "fs", "net", "process"], optional = true }
socket2 = { version = "0.4.0", optional = true }
mio = { version = "0.8.0", features = ["net", "os-ext"], optional = true }
[target.'cfg(not(windows))'.dependencies]
libc = { version = "0.2.96", optional = true }
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.36.0"
optional = true
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Networking_WinSock",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Threading",
]
[features]
default = ["close"]
close = ["libc", "windows-sys"]