From 0467cff06ef804f2e129544aab3c71a446c77277 Mon Sep 17 00:00:00 2001 From: Artus Date: Wed, 5 Jun 2019 14:06:08 +0200 Subject: [PATCH] init repo --- .gitignore | 2 ++ Cargo.toml | 7 +++++++ README.md | 0 src/main.rs | 3 +++ 4 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 README.md create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f0e3bca --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +**/*.rs.bk \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3b82c02 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "lootalot" +version = "0.1.0" +authors = ["Artus "] +edition = "2018" + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}