This commit is contained in:
Adrian Heine 2021-07-21 22:10:21 +02:00
commit 850e16c323
4 changed files with 15 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
target
Cargo.lock

7
Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "gntag"
version = "0.1.0"
edition = "2018"
authors = ["Adrian Heine <mail@adrianheine.de>"]
[dependencies]

3
rustfmt.toml Normal file
View file

@ -0,0 +1,3 @@
tab_spaces = 2
use_try_shorthand = true
use_field_init_shorthand = true

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}