Adrian Heine 3 years ago
commit
850e16c323
  1. 2
      .gitignore
  2. 7
      Cargo.toml
  3. 3
      rustfmt.toml
  4. 3
      src/main.rs

2
.gitignore

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

7
Cargo.toml

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

3
rustfmt.toml

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

3
src/main.rs

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