process-fun-core 0.1.1

Core functionality for process-fun, a Rust library for process management and IPC
Documentation
[package]
name = "process-fun-core"
version = "0.1.1"
edition = "2021"
description = "Core functionality for process-fun, a Rust library for process management and IPC"
license = "Apache-2.0"
repository = "https://github.com/eytans/process-fun-rs"
documentation = "https://docs.rs/process-fun-core"
readme = "../README.md"
keywords = ["process", "ipc", "communication"]
categories = ["development-tools", "os"]

[dependencies]
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
interprocess = "2.2.2"
nix = { version = "0.29", features = ["process", "fs", "signal"] }
syn = { workspace = true }

[features]
debug = []