-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 933 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "daemonize2"
version = "0.7.0"
license = "MIT OR Apache-2.0"
authors = ["Fedor Gogolev <knsd@knsd.net>", "Oliver Old <mail@oold.dev>"]
repository = "https://github.com/oold/daemonize"
documentation = "https://docs.rs/daemonize2"
readme = "README.md"
description = "Run your code as SysV daemon on Unix-like systems."
keywords = ["daemon", "daemonize", "fork", "sysv", "unix"]
categories = ["os", "os::unix-apis"]
edition = "2024"
exclude = [".*", "deploy/**"]
[[example]]
name = "complex"
doc-scrape-examples = true
[features]
# This feature is for testing purposes only. It enables additional functionality needed for
# implementing the tester binary.
tester = ["dep:os_pipe", "dep:rkyv"]
[target.'cfg(unix)'.dependencies]
errno = "0.3.11"
libc = "0.2.171"
os_pipe = { version = "1.2.1", optional = true }
rkyv = { version = "0.8.12", optional = true }
[target.'cfg(unix)'.dev-dependencies]
tempfile = "3.19.1"