From 84f33d08450c43e475af4a070446a7405b3f268d Mon Sep 17 00:00:00 2001 From: songsenand Date: Sat, 28 Feb 2026 16:19:14 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20Cargo=20=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E5=9F=BA=E7=A1=80=E6=96=87=E4=BB=B6=E5=92=8C=20main?= =?UTF-8?q?=20=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ Cargo.toml | 6 ++++++ src/main.rs | 3 +++ 3 files changed, 14 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore index f9ccf6d..99e098c 100644 --- a/.gitignore +++ b/.gitignore @@ -176,3 +176,8 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + + +# Added by cargo + +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ba2ddac --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "SUIME" +version = "0.1.0" +edition = "2024" + +[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!"); +}