init some stuf

This commit is contained in:
shenjack 2023-05-28 23:20:23 +08:00
parent 9107cfdbeb
commit c81050d0d8
3 changed files with 17 additions and 0 deletions

12
Cargo.toml Normal file
View File

@ -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"

0
src/file.rs Normal file
View File

5
src/main.rs Normal file
View File

@ -0,0 +1,5 @@
mod file;
fn main() {
println!("Hello, world!");
}