[dependencies.cfg-if]
version = "1"
[dependencies.tracing]
default-features = false
version = "0.1.37"
[dev-dependencies.easy-parallel]
version = "3.1.0"
[dev-dependencies.fastrand]
version = "2.0.0"
[dev-dependencies.socket2]
version = "0.5.5"
[[example]]
name = "tcp_client"
path = "examples/tcp_client.rs"
[[example]]
name = "two-listeners"
path = "examples/two-listeners.rs"
[[example]]
name = "wait-signal"
path = "examples/wait-signal.rs"
[lib]
name = "polling"
path = "src/lib.rs"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(polling_test_poll_backend)", "cfg(polling_test_epoll_pipe)"]
level = "warn"
priority = 0
[package]
authors = ["Stjepan Glavina <stjepang@gmail.com>", "John Nunley <dev@notgull.net>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous", "network-programming", "os"]
description = "Portable interface to epoll, kqueue, event ports, and IOCP"
edition = "2021"
exclude = ["/.*"]
keywords = ["mio", "epoll", "kqueue", "iocp"]
license = "Apache-2.0 OR MIT"
name = "polling"
readme = "README.md"
repository = "https://github.com/smol-rs/polling"
rust-version = "1.63"
version = "3.7.4"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
[target.'cfg(all(unix, not(target_os="vita")))'.dev-dependencies.signal-hook]
version = "0.3.17"
[target.'cfg(any(unix, target_os = "fuchsia", target_os = "vxworks"))'.dependencies.rustix]
default-features = false
features = ["event", "fs", "pipe", "process", "std", "time"]
version = "0.38.31"
[target.'cfg(target_os = "hermit")'.dependencies.hermit-abi]
version = "0.4.0"
[target."cfg(unix)".dev-dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.concurrent-queue]
version = "2.2.0"
[target."cfg(windows)".dependencies.pin-project-lite]
version = "0.2.9"
[target."cfg(windows)".dependencies.windows-sys]
features = ["Wdk_Foundation", "Wdk_Storage_FileSystem", "Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_Threading", "Win32_System_WindowsProgramming"]
version = "0.59"
[[test]]
name = "concurrent_modification"
path = "tests/concurrent_modification.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[[test]]
name = "many_connections"
path = "tests/many_connections.rs"
[[test]]
name = "multiple_pollers"
path = "tests/multiple_pollers.rs"
[[test]]
name = "notify"
path = "tests/notify.rs"
[[test]]
name = "other_modes"
path = "tests/other_modes.rs"
[[test]]
name = "precision"
path = "tests/precision.rs"
[[test]]
name = "timeout"
path = "tests/timeout.rs"
[[test]]
name = "windows_post"
path = "tests/windows_post.rs"
[[test]]
name = "windows_waitable"
path = "tests/windows_waitable.rs"