dmon 0.2.2

A library for building daemon processes.
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 = "dmon"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for building daemon processes."
readme = "README.md"
keywords = [
    "daemon",
    "daemonize",
    "fork",
    "service",
    "unix",
]
categories = ["os::unix-apis"]
license = "MIT"
repository = "https://github.com/genekoval/dmon-rs"

[features]
serde = ["dep:serde"]

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

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

[dependencies.nix]
version = "0.31"
features = [
    "fs",
    "process",
    "user",
]

[dependencies.serde]
version = "1"
optional = true

[dev-dependencies.clap]
version = "4"
features = [
    "derive",
    "string",
    "wrap_help",
]

[dev-dependencies.serde_test]
version = "1"