From aa145d69121e16a9786c30891e3cf58e07a647a0 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 19 Jul 2020 17:37:00 +0800 Subject: [PATCH] feat: add colored_msg --- colored_msg/Cargo.toml | 9 +++++++++ colored_msg/src/main.rs | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 colored_msg/Cargo.toml create mode 100644 colored_msg/src/main.rs diff --git a/colored_msg/Cargo.toml b/colored_msg/Cargo.toml new file mode 100644 index 0000000..d1b9db1 --- /dev/null +++ b/colored_msg/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "colored_msg" +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] diff --git a/colored_msg/src/main.rs b/colored_msg/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/colored_msg/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}