-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (18 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
21 lines (18 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "daemonize-me"
version = "2.0.2"
authors = ["Matheus Xavier <xavier+cargo@2dc.io>"]
edition = "2021"
license = "BSD-3-Clause/Apache-2.0"
repository = "https://github.com/CardinalBytes/daemonize-me"
description = "Rust library to ease the task of creating daemons on unix-like systems"
readme = "README.md"
keywords = ["daemon", "daemonize", "daemonize-me", "unix"]
categories = ["os::unix-apis"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.113"
nix = {version = "0.29.0", features = ["process", "user", "fs"]}
thiserror = "2.0.12"
[dev-dependencies]
tokio = { version = "1.45.0", features = ["rt", "rt-multi-thread", "time"] }