feat: add daemonize to fork off

This commit is contained in:
Moritz Böhme 2023-07-29 17:19:36 +02:00
parent b53689584a
commit 0727b3e053
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
3 changed files with 16 additions and 2 deletions

10
Cargo.lock generated
View file

@ -345,6 +345,15 @@ dependencies = [
"typenum",
]
[[package]]
name = "daemonize"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab8bfdaacb3c887a54d41bdf48d3af8873b3f5566469f8ba21b92057509f116e"
dependencies = [
"libc",
]
[[package]]
name = "derivative"
version = "2.2.0"
@ -1123,6 +1132,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"clap",
"daemonize",
"humantime",
"notify-rust",
"serde",