From 8c044c85a1b52567f8473a01e37ced90bda9fa6a Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 16 Feb 2023 19:49:42 -0500 Subject: [PATCH] [+] Rust module --- .gitignore | 2 ++ backend/Cargo.lock | 7 +++++++ backend/Cargo.toml | 8 ++++++++ backend/src/main.rs | 3 +++ 4 files changed, 20 insertions(+) create mode 100644 backend/Cargo.lock create mode 100644 backend/Cargo.toml create mode 100644 backend/src/main.rs diff --git a/.gitignore b/.gitignore index 82ee25a..b0d8e61 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ node_modules dist .idea +*.iml +target diff --git a/backend/Cargo.lock b/backend/Cargo.lock new file mode 100644 index 0000000..c496c3b --- /dev/null +++ b/backend/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "MeowIndex" +version = "0.1.0" diff --git a/backend/Cargo.toml b/backend/Cargo.toml new file mode 100644 index 0000000..e29510f --- /dev/null +++ b/backend/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "MeowIndex" +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/backend/src/main.rs b/backend/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/backend/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}