viaduct 0.4.0

A duplex communication channel between a parent and child process, using unnamed pipes
Documentation
[dependencies.bincode]
optional = true
version = "1"

[dependencies.bytemuck]
optional = true
version = "1"

[dependencies.interprocess]
default-features = false
version = "1"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
optional = true
version = "1"

[dependencies.speedy]
optional = true
version = "0.8"

[dependencies.uuid]
features = ["v4"]
version = "1"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.serde]
features = ["derive"]
version = "1"

[features]
bincode = ["dep:bincode", "dep:serde"]
bytemuck = ["dep:bytemuck"]
default = ["bytemuck"]
speedy = ["dep:speedy"]

[package]
authors = ["William Venner <william@venner.io>"]
categories = ["asynchronous", "memory-management"]
description = "A duplex communication channel between a parent and child process, using unnamed pipes"
edition = "2021"
keywords = ["pipes", "ipc", "multiprocessing", "duplex"]
license = "MIT OR Apache-2.0"
name = "viaduct"
readme = "README.md"
repository = "https://github.com/WilliamVenner/viaduct"
resolver = "2"
version = "0.4.0"

[profile.ci-test]
debug-assertions = true
inherits = "dev"
lto = true
opt-level = 0
overflow-checks = true

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows]
features = ["Win32_Foundation"]
version = "0.39"