[package]
edition = "2024"
name = "win_uds"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Windows Unix Domain Socket"
readme = "README.md"
keywords = [
"windows",
"unix",
"socket",
"uds",
]
categories = [
"network-programming",
"os::windows-apis",
"api-bindings",
]
license = "Unlicense"
repository = "https://github.com/kouhe3/win_uds"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-pc-windows-msvc"
[features]
async = [
"dep:async-io",
"dep:futures-io",
]
[lib]
name = "win_uds"
path = "src/lib.rs"
[[test]]
name = "blocking"
path = "tests/blocking.rs"
[[test]]
name = "echo"
path = "tests/echo.rs"
[[test]]
name = "test_async"
path = "tests/test_async.rs"
[[test]]
name = "timeout"
path = "tests/timeout.rs"
[dependencies.async-io]
version = "2"
optional = true
[dependencies.futures-io]
version = "0.3.31"
optional = true
[dependencies.socket2]
version = "0.6.3"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]