polling/Cargo.toml

31 lines
780 B
TOML
Raw Normal View History

2020-08-06 13:02:59 +00:00
[package]
name = "polling"
2020-10-18 22:25:40 +00:00
version = "2.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"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/polling"
homepage = "https://github.com/smol-rs/polling"
2020-08-06 13:02:59 +00:00
documentation = "https://docs.rs/polling"
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
categories = ["asynchronous", "network-programming", "os"]
2020-09-20 15:45:24 +00:00
[features]
default = ["std"]
std = []
2020-08-06 13:02:59 +00:00
[dependencies]
2020-12-25 09:30:50 +00:00
cfg-if = "1"
2020-08-29 14:00:59 +00:00
log = "0.4.11"
2020-08-06 13:02:59 +00:00
2020-09-16 09:23:03 +00:00
[target."cfg(unix)".dependencies]
libc = "0.2.77"
2020-08-06 13:02:59 +00:00
[target.'cfg(windows)'.dependencies]
2020-10-02 17:19:18 +00:00
wepoll-sys = "3.0.0"
2020-10-02 17:25:43 +00:00
winapi = { version = "0.3.9", features = ["ioapiset", "winsock2"] }
2020-09-16 09:23:03 +00:00
[dev-dependencies]
easy-parallel = "3.1.0"