nb-connect/Cargo.toml

28 lines
754 B
TOML
Raw Permalink Normal View History

2020-09-16 09:20:09 +00:00
[package]
name = "nb-connect"
2021-03-20 10:40:23 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
2021-04-25 12:40:50 +00:00
version = "1.2.0"
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"]
[dependencies]
socket2 = { version = "0.4.0", features = ["all"] }
2020-09-16 09:20:09 +00:00
[target."cfg(unix)".dependencies]
libc = "0.2.77"
[dev-dependencies]
2020-10-04 09:15:18 +00:00
polling = "2.0.0"