polling/Cargo.toml

27 lines
823 B
TOML
Raw Normal View History

2020-08-06 13:02:59 +00:00
[package]
name = "polling"
2020-09-15 18:53:33 +00:00
version = "1.0.2"
2020-08-06 13:02:59 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
2020-08-11 11:18:14 +00:00
description = "Portable interface to epoll, kqueue, event ports, and wepoll"
2020-08-06 13:02:59 +00:00
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stjepang/polling"
homepage = "https://github.com/stjepang/polling"
documentation = "https://docs.rs/polling"
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
categories = ["asynchronous", "network-programming", "os"]
readme = "README.md"
[dependencies]
cfg-if = "0.1.10"
2020-09-07 14:44:33 +00:00
libc = "0.2.76"
2020-08-29 14:00:59 +00:00
log = "0.4.11"
2020-08-06 13:02:59 +00:00
[dev-dependencies]
2020-08-15 06:23:45 +00:00
easy-parallel = "3.1.0"
2020-08-06 13:02:59 +00:00
[target.'cfg(windows)'.dependencies]
# Patched version of wepoll that can be notified by PostQueuedCompletionStatus.
wepoll-sys-stjepang = "1.0.6"
2020-08-06 13:10:39 +00:00
winapi = { version = "0.3.9", features = ["ioapiset", "winsock2"] }