daemonize2 0.6.0

Library to enable your code run as a daemon process on Unix-like systems.
Documentation
[[example]]
name = "complex"
path = "examples/complex.rs"

[[example]]
name = "tester"
path = "examples/tester.rs"

[features]
tester = ["dep:arraystring", "dep:os_pipe"]

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

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

[target."cfg(unix)".dependencies.arraystring]
optional = true
version = "0.3.0"

[target."cfg(unix)".dependencies.errno]
version = "0.3.11"

[target."cfg(unix)".dependencies.libc]
version = "0.2.171"

[target."cfg(unix)".dependencies.os_pipe]
optional = true
version = "1.2.1"

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

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