From 7331163c2b7ccef693b22eae6b4b1b04d64256e6 Mon Sep 17 00:00:00 2001 From: "Hatter Jiang@Pixelbook" Date: Sat, 12 Jun 2021 18:33:24 +0800 Subject: [PATCH] feat: add goblin --- __bin/goblin/Cargo.toml | 9 +++++++++ __bin/goblin/src/main.rs | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 __bin/goblin/Cargo.toml create mode 100644 __bin/goblin/src/main.rs diff --git a/__bin/goblin/Cargo.toml b/__bin/goblin/Cargo.toml new file mode 100644 index 0000000..6e63543 --- /dev/null +++ b/__bin/goblin/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "goblin" +version = "0.1.0" +authors = ["Hatter Jiang@Pixelbook "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/__bin/goblin/src/main.rs b/__bin/goblin/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/__bin/goblin/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}