From 4611fe33bd5d612c9f8396f29393f26a3f02ba96 Mon Sep 17 00:00:00 2001 From: 7ap <109433659+7ap@users.noreply.github.com> Date: Sat, 18 Nov 2023 19:45:28 -0800 Subject: [PATCH] chore: add package --- .gitignore | 2 ++ Cargo.toml | 7 +++++++ src/main.rs | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/main.rs 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..da51a13 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "internal-studio-patcher" +version = "0.0.0" +edition = "2021" +publish = false + +[dependencies] 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!"); +}