[package]
edition = "2024"
name = "uds-fork"
version = "0.6.1"
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"
[lib]
name = "uds_fork"
path = "src/lib.rs"
[target."cfg(unix)".dependencies.libc]
version = "~0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "~0.61"
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_System_IO",
]