compio-net 0.6.0

Networking IO for compio
Documentation
[dependencies.cfg-if]
version = "1.0.0"

[dependencies.compio-buf]
version = "0.5.0"

[dependencies.compio-driver]
default-features = false
version = "0.6.0"

[dependencies.compio-io]
version = "0.5.0"

[dependencies.compio-runtime]
features = ["event"]
version = "0.6.0"

[dependencies.either]
version = "1.9.0"

[dependencies.once_cell]
version = "1.18.0"

[dependencies.socket2]
features = ["all"]
version = "0.5.6"

[dev-dependencies.compio-macros]
version = "0.1.2"

[dev-dependencies.futures-util]
version = "0.3.29"

[dev-dependencies.tempfile]
version = "3.8.1"

[features]
io-uring = ["compio-runtime/io-uring"]
nightly = ["once_cell_try"]
once_cell_try = []
polling = ["compio-runtime/polling"]

[lib]
name = "compio_net"
path = "src/lib.rs"

[package]
authors = ["Berrysoft <Strawberry_Str@hotmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "network-programming"]
description = "Networking IO for compio"
edition = "2021"
keywords = ["async", "net"]
license = "MIT"
name = "compio-net"
readme = "README.md"
repository = "https://github.com/compio-rs/compio"
version = "0.6.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[target."cfg(unix)".dependencies.libc]
version = "0.2.164"

[target."cfg(windows)".dependencies.widestring]
version = "1.0.2"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_System_IO"]
version = "0.52.0"

[[test]]
name = "cmsg"
path = "tests/cmsg.rs"

[[test]]
name = "poll"
path = "tests/poll.rs"

[[test]]
name = "split"
path = "tests/split.rs"

[[test]]
name = "tcp_accept"
path = "tests/tcp_accept.rs"

[[test]]
name = "tcp_connect"
path = "tests/tcp_connect.rs"

[[test]]
name = "udp"
path = "tests/udp.rs"

[[test]]
name = "unix_stream"
path = "tests/unix_stream.rs"