daemonize2 0.6.0

Library to enable your code run as a daemon process on Unix-like systems.
Documentation
[package]
name = "daemonize2"
version = "0.6.0"
license = "MIT OR Apache-2.0"
authors = ["Fedor Gogolev <knsd@knsd.net>", "Oliver Old <mail@oold.dev>"]
repository = "https://github.com/oold/daemonize"
readme = "README.md"
description = "Library to enable your code run as a daemon process on Unix-like systems."
keywords = ["daemon", "daemonize", "unix"]
categories = ["os::unix-apis"]
edition = "2024"

[features]
# This feature is for testing purposes only. It enables additional functionality needed for
# implementing the tester binary.
tester = ["dep:arraystring", "dep:os_pipe"]

[target.'cfg(unix)'.dependencies]
arraystring = { version = "0.3.0", optional = true }
errno = "0.3.11"
libc = "0.2.171"
os_pipe = { version = "1.2.1", optional = true }

[target.'cfg(unix)'.dev-dependencies]
tempfile = "3.19.1"