rskit-process 0.2.0-alpha.5

Process and subprocess execution with timeout and signal handling
Documentation
[package]
name        = "rskit-process"
description = "Process and subprocess execution with timeout and signal handling"
version = "0.2.0-alpha.5"
edition.workspace     = true
license.workspace     = true
rust-version.workspace = true
authors.workspace      = true
repository.workspace   = true
homepage.workspace     = true
documentation = "https://docs.rs/rskit-process"
readme = "README.md"
categories = ["development-tools"]
keywords   = ["process", "subprocess", "timeout", "signal"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
# External
tokio      = { workspace = true, features = ["process", "time", "signal", "sync", "net"] }
tokio-util = { workspace = true }
tracing    = { workspace = true }
libc       = { workspace = true }
parking_lot = { workspace = true }

# Internal
rskit-errors = { workspace = true }
rskit-util = { workspace = true }

[dev-dependencies]
tokio = { workspace = true, features = ["full", "test-util"] }
parking_lot = { workspace = true }
rskit-testutil = { workspace = true }