async-io/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2020-06-28 20:15:55 +00:00
[package]
name = "async-io"
2020-11-30 18:04:07 +00:00
version = "1.3.1"
2020-06-28 20:15:55 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
2020-06-29 14:26:06 +00:00
description = "Async I/O and timers"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stjepang/async-io"
homepage = "https://github.com/stjepang/async-io"
documentation = "https://docs.rs/async-io"
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
2020-07-04 16:25:24 +00:00
categories = ["asynchronous", "network-programming", "os"]
2020-06-29 14:26:06 +00:00
readme = "README.md"
2020-06-28 20:15:55 +00:00
[dependencies]
2020-09-14 18:10:09 +00:00
concurrent-queue = "1.2.2"
fastrand = "1.3.5"
2020-10-09 12:33:16 +00:00
futures-lite = "1.11.0"
2020-08-29 14:41:35 +00:00
log = "0.4.11"
2020-09-16 09:27:15 +00:00
nb-connect = "1.0.0"
2020-09-14 18:10:09 +00:00
once_cell = "1.4.1"
2020-08-04 20:02:39 +00:00
parking = "2.0.0"
2020-10-03 14:37:09 +00:00
polling = "2.0.0"
2020-09-07 14:50:06 +00:00
vec-arena = "1.0.0"
2020-09-14 18:10:09 +00:00
waker-fn = "1.1.0"
2020-06-28 20:15:55 +00:00
[target."cfg(unix)".dependencies]
libc = "0.2.77"
2020-10-03 14:37:09 +00:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winsock2"] }
2020-06-28 20:15:55 +00:00
[dev-dependencies]
2020-09-14 18:10:09 +00:00
async-channel = "1.4.2"
2020-10-03 14:38:22 +00:00
async-net = "1.3.0"
2020-09-07 14:50:06 +00:00
blocking = "1.0.0"
2020-07-28 18:38:09 +00:00
signal-hook = "0.1.16"
2020-06-28 20:15:55 +00:00
tempfile = "3.1.0"
2020-07-28 18:38:09 +00:00
[target.'cfg(target_os = "linux")'.dev-dependencies]
inotify = { version = "0.8.3", default-features = false }
2020-07-31 15:03:46 +00:00
nix = "0.18.0"
2020-07-28 18:38:09 +00:00
timerfd = "1.1.1"
[target.'cfg(windows)'.dev-dependencies]
uds_windows = "0.1.5"