polling/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

2020-08-06 13:02:59 +00:00
[package]
name = "polling"
2021-03-20 10:04:14 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v3.x.y" git tag
version = "3.2.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>", "John Nunley <dev@notgull.net>"]
2023-10-08 05:46:23 +00:00
edition = "2021"
rust-version = "1.63"
description = "Portable interface to epoll, kqueue, event ports, and IOCP"
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"
keywords = ["mio", "epoll", "kqueue", "iocp"]
2020-08-06 13:02:59 +00:00
categories = ["asynchronous", "network-programming", "os"]
2022-01-08 16:50:42 +00:00
exclude = ["/.*"]
2020-08-06 13:02:59 +00:00
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
2020-08-06 13:02:59 +00:00
[dependencies]
2020-12-25 09:30:50 +00:00
cfg-if = "1"
2023-06-21 03:28:18 +00:00
tracing = { version = "0.1.37", default-features = false }
2020-08-06 13:02:59 +00:00
2021-05-26 12:57:38 +00:00
[target.'cfg(any(unix, target_os = "fuchsia", target_os = "vxworks"))'.dependencies]
rustix = { version = "0.38.8", features = ["event", "fs", "pipe", "process", "std", "time"], default-features = false }
2020-08-06 13:02:59 +00:00
[target.'cfg(windows)'.dependencies]
concurrent-queue = "2.2.0"
pin-project-lite = "0.2.9"
2022-11-27 04:50:12 +00:00
[target.'cfg(windows)'.dependencies.windows-sys]
2023-04-03 18:37:16 +00:00
version = "0.48"
2022-11-27 04:50:12 +00:00
features = [
2023-04-03 18:37:16 +00:00
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_Security",
2023-04-03 18:37:16 +00:00
"Win32_Storage_FileSystem",
2022-11-27 04:50:12 +00:00
"Win32_System_IO",
"Win32_System_LibraryLoader",
2023-04-03 18:37:16 +00:00
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
2022-11-27 04:50:12 +00:00
]
2020-09-16 09:23:03 +00:00
[dev-dependencies]
easy-parallel = "3.1.0"
fastrand = "2.0.0"