From c81050d0d89ae01550b1d8c91e135a8f8850e610 Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Sun, 28 May 2023 23:20:23 +0800 Subject: [PATCH] init some stuf --- Cargo.toml | 12 ++++++++++++ src/file.rs | 0 src/main.rs | 5 +++++ 3 files changed, 17 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/file.rs create mode 100644 src/main.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c3b0928 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "openbmclapi_rs" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +# https://docs.rs/fern/0.6.2/fern/ + +[[fern]] +version = "0.6.2" diff --git a/src/file.rs b/src/file.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..75af312 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,5 @@ +mod file; + +fn main() { + println!("Hello, world!"); +}