nb-connect/Cargo.toml

26 lines
729 B
TOML
Raw Normal View History

2020-09-16 09:20:09 +00:00
[package]
name = "nb-connect"
2020-10-04 09:15:48 +00:00
version = "1.0.2"
2020-09-16 09:20:09 +00:00
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Jayce Fayne <jayce.fayne@mailbox.org>",
]
edition = "2018"
description = "Non-blocking TCP or Unix connect"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/nb-connect"
homepage = "https://github.com/smol-rs/nb-connect"
2020-09-16 09:20:09 +00:00
documentation = "https://docs.rs/nb-connect"
keywords = ["TcpStream", "UnixStream", "socket2", "polling"]
categories = ["asynchronous", "network-programming", "os"]
readme = "README.md"
[target."cfg(unix)".dependencies]
libc = "0.2.77"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["handleapi", "ws2tcpip"] }
[dev-dependencies]
2020-10-04 09:15:18 +00:00
polling = "2.0.0"