procref 0.1.0

Cross-platform process reference counting for shared service lifecycle management
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.dirs]
version = "5.0"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["sync", "time", "rt"]
optional = true
version = "1"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tempfile]
version = "3"

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

[features]
default = ["tokio"]
tokio = ["dep:tokio"]

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

[package]
authors = ["putao520"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["os", "concurrency"]
description = "Cross-platform process reference counting for shared service lifecycle management"
edition = "2021"
keywords = ["ipc", "process", "reference-counting", "lifecycle", "shared-service"]
license = "MIT"
name = "procref"
readme = "README.md"
repository = "https://github.com/putao520/procref"
version = "0.1.0"

[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "linux")'.dependencies.nix]
features = ["sched", "process", "signal"]
version = "0.29"

[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "macos")'.dependencies.mach2]
version = "0.4"

[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_System_Threading", "Win32_Security", "Win32_System_SystemServices"]
version = "0.59"