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!"); +}