This follows the POSIX standard way of creating a daemon process. This does not use the systemd or other init system specifics.
29 lines
777 B
TOML
29 lines
777 B
TOML
[package]
|
|
name = "daemon"
|
|
version = "1.0.0"
|
|
authors = ["Jason Smith <Myrddin@CyberMagesLLC.com>"]
|
|
description = "Handles setting up and creating a Linux Daemon."
|
|
license = ""
|
|
repository = "https://gitlab.com/CyberMages/Core/Daemon.git"
|
|
documentation = ""
|
|
keywords = ["Daemon", "Demon", "Service"]
|
|
|
|
|
|
[dependencies.scribe]
|
|
git = "ssh://git@gitlab.com/CyberMages/Core/scribe.git"
|
|
|
|
[dependencies.weave]
|
|
git = "ssh://git@gitlab.com/CyberMages/Core/weave.git"
|
|
|
|
[dependencies.spellbook]
|
|
git = "ssh://git@gitlab.com/CyberMages/Core/spellbook.git"
|
|
|
|
[dependencies.binding]
|
|
git = "ssh://git@gitlab.com/CyberMages/Core/binding.git"
|
|
|
|
[dependencies.pact]
|
|
git = "ssh://git@gitlab.com/CyberMages/Core/pact.git"
|
|
|
|
[dependencies.posix_rs]
|
|
git = "ssh://git@gitlab.com/CyberMages/FFI/posix_rs.git"
|