From 88438102a5c6ae8cab63e7407d45395980d36b35 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sat, 14 Nov 2020 10:47:45 +0800 Subject: [PATCH] feat: add dockerbuild --- Cargo.toml | 11 +++++++++++ src/main.rs | 6 ++++++ 2 files changed, 17 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3fe6da1 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "dockerbuild" +version = "0.1.0" +authors = ["Hatter Jiang "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +rust_util = "0.6" + diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..2ca4ccd --- /dev/null +++ b/src/main.rs @@ -0,0 +1,6 @@ +#[macro_use] +extern crate rust_util; + +fn main() { + information!("Hello World!") +}