daemonize2 0.7.0

Run your code as SysV daemon on Unix-like systems.
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"
name = "daemonize2"
version = "0.7.0"
authors = [
    "Fedor Gogolev <knsd@knsd.net>",
    "Oliver Old <mail@oold.dev>",
]
build = false
exclude = [
    ".*",
    "deploy/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run your code as SysV daemon on Unix-like systems."
documentation = "https://docs.rs/daemonize2"
readme = "README.md"
keywords = [
    "daemon",
    "daemonize",
    "fork",
    "sysv",
    "unix",
]
categories = [
    "os",
    "os::unix-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oold/daemonize"

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

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

[[example]]
name = "complex"
path = "examples/complex.rs"
doc-scrape-examples = true

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

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

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

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

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

[target."cfg(unix)".dependencies.rkyv]
version = "0.8.12"
optional = true

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