rskit-process 0.2.0-alpha.5

Process and subprocess execution with timeout and signal handling
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.91"
name = "rskit-process"
version = "0.2.0-alpha.5"
authors = ["kbukum contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Process and subprocess execution with timeout and signal handling"
homepage = "https://github.com/kbukum/rskit"
documentation = "https://docs.rs/rskit-process"
readme = "README.md"
keywords = [
    "process",
    "subprocess",
    "timeout",
    "signal",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/kbukum/rskit"
resolver = "2"

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

[lib]
name = "rskit_process"
path = "src/lib.rs"

[[test]]
name = "config_contract_behavior"
path = "tests/config_contract_behavior.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "persistent_integration"
path = "tests/persistent_integration.rs"

[[test]]
name = "pty_integration"
path = "tests/pty_integration.rs"

[dependencies.libc]
version = "0.2"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rskit-errors]
version = "0.2.0-alpha.1"

[dependencies.rskit-util]
version = "0.2.0-alpha.1"

[dependencies.tokio]
version = "1"
features = [
    "full",
    "process",
    "time",
    "signal",
    "sync",
    "net",
]

[dependencies.tokio-util]
version = "0.7"
features = ["rt"]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.parking_lot]
version = "0.12"

[dev-dependencies.rskit-testutil]
version = "0.2.0-alpha.1"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "full",
    "test-util",
]