From c8a19796a99146bee4a6a058976ee83bab257335 Mon Sep 17 00:00:00 2001 From: Botahamec Date: Tue, 21 Dec 2021 15:51:50 -0500 Subject: Starting template --- .gitignore | 2 ++ Cargo.toml | 8 ++++++++ rustfmt.toml | 3 +++ src/lib.rs | 1 + 4 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100755 rustfmt.toml create mode 100644 src/lib.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /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..e065598 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "botic" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100755 index 0000000..2508efc --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,3 @@ +edition = "2021" +newline_style = "Unix" +hard_tabs = true \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1 @@ + -- cgit v1.2.3