feat: init commit

This commit is contained in:
2021-04-03 12:54:48 +08:00
parent 2a14c1bad9
commit 0f775615e5
3 changed files with 18 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,7 @@
# ---> Rust # ---> Rust
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables # will have compiled files and executables
.idea/
debug/ debug/
target/ target/

14
Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "app-run-container"
version = "0.1.0"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rust_util = "0.6"
reqwest = "0.11"
serde = "1.0"
serde_json = "1.0"

3
src/main.rs Normal file
View File

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