# SPDX-License-Identifier: MIT OR Apache-2.0 # Copyright 2020, Alyssa Ross [package] name = "msg_socket2" version = "0.1.0" authors = ["Alyssa Ross "] license = "MIT OR Apache-2.0" edition = "2018" description = "Send messages over Unix domain sockets, including file descriptors" readme = "README" [dependencies] libc = "*" msg_socket2_derive = { path = "derive" } serde = { version = "1.0.104" } sys_util = { path = "../sys_util" } bincode = { git = "https://github.com/alyssais/bincode", branch = "from_slice" }