From 4705fc2f13894ac89ea3605dcec992c04d2c82bc Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Tue, 24 Mar 2026 18:30:45 +0800 Subject: [PATCH] feat: add astrbot-core rust project --- rust/Cargo.toml | 6 ++++++ rust/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 rust/Cargo.toml create mode 100644 rust/src/main.rs diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 000000000..c46e45fc0 --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "astrbot-core" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/rust/src/main.rs b/rust/src/main.rs new file mode 100644 index 000000000..e7a11a969 --- /dev/null +++ b/rust/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}