[package]
name = "system-interface"
version = "0.5.5"
description = "Extensions to the Rust standard library"
authors = ["Dan Gohman <dev@sunfishcode.online>"]
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
keywords = ["api", "network", "file"]
categories = ["filesystem", "network-programming", "os"]
repository = "https://github.com/bytecodealliance/system-interface"
edition = "2018"
readme = "README.md"
[build-dependencies]
rustc_version = "0.3.0"
[dependencies]
async-std = { version = "1.9.0", optional = true }
bitflags = "1.2.1"
cap-std = { version = "0.12.0", optional = true }
cap-async-std = { version = "0.12.0", optional = true }
char-device = { version = "0.1.0", optional = true }
os_pipe = { version = "0.9.2", optional = true }
socketpair = { version = "0.4.0", optional = true }
unsafe-io = "0.3.0"
[target.'cfg(not(windows))'.dependencies]
posish = "0.5.9"
[target.'cfg(windows)'.dependencies]
atty = "0.2.14"
cap-fs-ext = "0.12.0"
winapi = { version = "0.3.9", features = [
"winerror",
"winsock2",
] }
winx = "0.22.0"
[dev-dependencies]
cap-fs-ext = "0.12.0"
cap-tempfile = "0.12.0"
cap-std = "0.12.0"
tempfile = "3.2.0"
atty = "0.2.14"
[features]
default = []
cap_std_impls = ["cap-std"]
cap_async_std_impls = ["async-std", "cap-async-std"]
cap_std_impls_fs_utf8 = ["cap-std/fs_utf8"]
cap_async_std_impls_fs_utf8 = ["async-std", "cap-async-std/fs_utf8"]
[badges]
maintenance = { status = "actively-developed" }