[package]
edition = "2024"
name = "uds-fork"
version = "0.7.4"
authors = [
"Torbjørn Birch Moltu <t.b.moltu@lyse.net>",
"Aleksandr Morozov <alex@nixd.org>",
]
build = false
exclude = [
"tests",
"src/bin",
".vscode",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A unix domain socket crate that supports abstract addresses, fd-passing, seqpacket and windows unix stream sockets.
"""
readme = "README.md"
keywords = [
"unix",
"socket",
"seqpacket",
"fdpassing",
"windows",
]
categories = [
"os::unix-apis",
"asynchronous",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/eesekaj/uds"
[package.metadata.docs.rs]
all-features = true
targets = [
"aarch64-linux-android",
"x86_64-pc-windows-gnu",
"x86_64-pc-windows-msvc",
"x86_64-unknown-dragonfly",
"x86_64-unknown-freebsd",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-netbsd",
"x86_64-unknown-openbsd",
]
[features]
default = []
[lib]
name = "uds_fork"
path = "src/lib.rs"
[dependencies.xio-rs]
version = "0.1.0-alpha.3"
optional = true
[dev-dependencies.tempfile]
version = "~3.27"
[dev-dependencies.xio-rs]
version = "0.1.0-alpha.3"
[target."cfg(unix)".dependencies.libc]
version = "~0.2"
[target."cfg(unix)".dependencies.mio]
version = "~1.1"
features = [
"os-ext",
"net",
]
optional = true
[target."cfg(windows)".dependencies.tempfile]
version = "~3.27"
[target."cfg(windows)".dependencies.windows-sys]
version = "~0.61"
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_System_IO",
]