daemon/Cargo.toml
Jason Travis Smith 9d0425859b A Daemon can now be created using the Daemon::spawn function.
This follows the POSIX standard way of creating a daemon process.
This does not use the systemd or other init system specifics.
2017-10-11 01:04:30 -04:00

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"