diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4fffb2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +/Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..afe897a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "ghe-fast-tools" +version = "0.1.0" +authors = ["Patrick Lühne "] +description = "Fast replacements for the GitHub admin tools" +edition = "2018" + +[package.metadata.deb] +assets = [ + ["github-fast-env/github-fast-envd.rb", "usr/bin/github-fast-envd", "755"], + ["github-fast-env/github-fast-env.rb", "usr/bin/github-fast-env", "755"], + ["github-fast-env/systemd/github-fast-envd.service", "usr/lib/systemd/system/", "644"], + ["ghe-fast-tools/ghe-fast-console.rb", "usr/lib/github-fast-env/", "644"], + ["ghe-fast-tools/bin/ghe-fast-console.rb", "usr/bin/ghe-fast-console", "755"], +] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..6033e7c --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() +{ +}