From 9145071a954eb45350f0b0c6ee2740e3ae071170 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sat, 11 Nov 2023 15:11:23 -0700 Subject: [PATCH] Add basic Cargo setup. Via cargo init. --- .gitignore | 4 +++- Cargo.lock | 7 +++++++ Cargo.toml | 12 ++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 Cargo.lock create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index c18dd8d..7a0ec7f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -__pycache__/ +# Added by cargo + +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f198875 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "gongor" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9f0b6ed --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "gongor" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] + +[[bin]] +name = "gongor" +path = "gongor.rs"