system-interface 0.27.3

Extensions to the Rust standard library
Documentation
[dependencies.async-std]
features = ["io_safety"]
optional = true
version = "1.13.0"

[dependencies.bitflags]
version = "2.2.3"

[dependencies.cap-async-std]
optional = true
version = "3.0.0"

[dependencies.cap-std]
optional = true
version = "3.0.0"

[dependencies.char-device]
optional = true
version = "0.16.0"

[dependencies.io-lifetimes]
default-features = false
version = "2.0.0"

[dependencies.os_pipe]
features = ["io_safety"]
optional = true
version = "1.0.0"

[dependencies.socketpair]
optional = true
version = "0.19.0"

[dependencies.ssh2]
optional = true
version = "0.9.1"

[dev-dependencies.cap-fs-ext]
version = "3.0.0"

[dev-dependencies.cap-std]
version = "3.0.0"

[dev-dependencies.cap-tempfile]
version = "3.0.0"

[dev-dependencies.tempfile]
version = "3.2.0"

[features]
cap_async_std_impls = ["async-std", "cap-async-std", "io-lifetimes/async-std"]
cap_async_std_impls_fs_utf8 = ["async-std", "cap-async-std/fs_utf8"]
cap_std_impls = ["cap-std"]
cap_std_impls_fs_utf8 = ["cap-std/fs_utf8"]
default = []
use_os_pipe = ["os_pipe", "io-lifetimes/os_pipe"]

[lib]
name = "system_interface"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(racy_asserts)", "cfg(unix_socket_peek)", 'cfg(feature, values("socket2"))']
level = "warn"
priority = 0

[package]
authors = ["Dan Gohman <dev@sunfishcode.online>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["filesystem", "network-programming", "os"]
description = "Extensions to the Rust standard library"
edition = "2021"
exclude = ["/.github"]
keywords = ["api", "network", "file"]
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
name = "system-interface"
readme = "README.md"
repository = "https://github.com/bytecodealliance/system-interface"
version = "0.27.3"

[target."cfg(not(windows))".dependencies.rustix]
features = ["fs", "net"]
version = "0.38.0"

[target."cfg(windows)".dependencies.cap-fs-ext]
version = "3.0.0"

[target."cfg(windows)".dependencies.cap-std]
version = "3.0.0"

[target."cfg(windows)".dependencies.fd-lock]
version = "4.0.0"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Storage_FileSystem", "Win32_System_Pipes"]
version = ">=0.52, <=0.59"

[target."cfg(windows)".dependencies.winx]
version = "0.36.0"

[[test]]
name = "allocate"
path = "tests/allocate.rs"

[[test]]
name = "append"
path = "tests/append.rs"

[[test]]
name = "fd_flags"
path = "tests/fd_flags.rs"

[[test]]
name = "is_read_write"
path = "tests/is_read_write.rs"

[[test]]
name = "live_rename"
path = "tests/live_rename.rs"

[[test]]
name = "peek"
path = "tests/peek.rs"

[[test]]
name = "read_ready"
path = "tests/read_ready.rs"

[[test]]
name = "read_to_end"
path = "tests/read_to_end.rs"

[[test]]
name = "vectored_at"
path = "tests/vectored_at.rs"