commit 850e16c323ed18f53fcd6580fea45a38f37b28d7 Author: Adrian Heine Date: Wed Jul 21 22:10:21 2021 +0200 Init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9d37c5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..01c3b0d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "gntag" +version = "0.1.0" +edition = "2018" +authors = ["Adrian Heine "] + +[dependencies] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..c55fc1d --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,3 @@ +tab_spaces = 2 +use_try_shorthand = true +use_field_init_shorthand = true diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..80a1832 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}