From bdb0f8b6a9d3ce10df57e8e162eb22dea30f3ab4 Mon Sep 17 00:00:00 2001 From: Jonathan Strong Date: Wed, 9 Jun 2021 16:48:20 -0400 Subject: [PATCH] initial commit --- .gitignore | 3 +++ Cargo.toml | 7 +++++++ src/main.rs | 3 +++ 3 files changed, 13 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..992c4be --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target +*.swp +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3a505bd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "glomtastic" +version = "0.1.0" +edition = "2018" + +[dependencies] +glommio = "0.4" diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}