From e53c7208d7e7bc3c9a687f68751108cbb2365957 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Sat, 2 Sep 2017 04:23:50 -0400 Subject: [PATCH] The project is setup to use the Cargo build system. #3 The required Cargo files for an executable have been added to the project. --- Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..912a007 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "daemon" +version = "0.1.0" +authors = ["Jason Smith "] +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"