async-io 1.12.0

Async I/O and timers
Documentation
[package]
name = "async-io"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.12.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.46"
description = "Async I/O and timers"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-io"
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
categories = ["asynchronous", "network-programming", "os"]
exclude = ["/.*"]

[[bench]]
name = "io"
harness = false

[dependencies]
async-lock = "2.6"
concurrent-queue = "2"
futures-lite = "1.11.0"
log = "0.4.11"
parking = "2.0.0"
polling = "2.0.0"
slab = "0.4.2"
socket2 = { version = "0.4.2", features = ["all"] }
waker-fn = "1.1.0"

[build-dependencies]
autocfg = "1"

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

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.42", features = ["Win32_Networking_WinSock"] }

[dev-dependencies]
async-channel = "1"
async-net = "1"
blocking = "1"
criterion = "0.4"
getrandom = "0.2.7"
signal-hook = "0.3"
tempfile = "3"

[target.'cfg(target_os = "linux")'.dev-dependencies]
inotify = { version = "0.10", default-features = false }
nix = { version = "0.25", default-features = false }
timerfd = "1"

[target.'cfg(windows)'.dev-dependencies]
uds_windows = "1"