rightkit-process 0.1.0

Ownership-safe child lifecycle, restart, and health primitives for Right Suite apps.
Documentation
[package]
name = "rightkit-process"
version = "0.1.0"
edition = "2021"
rust-version = "1.81"
description = "Ownership-safe child lifecycle, restart, and health primitives for Right Suite apps."
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/bogusyogi/claude"
keywords = ["process", "supervisor", "lifecycle", "sidecar"]
categories = ["os"]
include = ["src/**", "tests/**", "README.md", "LICENSE-MIT", "LICENSE-APACHE"]

[dependencies]
process-wrap = { version = "=8.2.1", default-features = false, features = ["std", "creation-flags", "job-object", "process-group", "tracing"] }

[target.'cfg(unix)'.dependencies]
nix = { version = "=0.30.1", default-features = false, features = ["signal"] }

[target.'cfg(windows)'.dependencies]
windows = { version = "=0.61.1", features = ["Win32_Foundation", "Win32_System_Threading"] }

[dev-dependencies]
trybuild = "=1.0.116"