summary refs log tree commit diff
path: root/msg_socket2/Cargo.toml
blob: 1662ab3d4ff21240c1b62ccc03ec7a63b100d43d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# SPDX-License-Identifier: MIT OR Apache-2.0
# Copyright 2020, Alyssa Ross

[package]
name = "msg_socket2"
version = "0.1.0"
authors = ["Alyssa Ross <hi@alyssa.is>"]
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" }