Init
This commit is contained in:
commit
850e16c323
4 changed files with 15 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
target
|
||||
Cargo.lock
|
||||
7
Cargo.toml
Normal file
7
Cargo.toml
Normal 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
3
rustfmt.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
tab_spaces = 2
|
||||
use_try_shorthand = true
|
||||
use_field_init_shorthand = true
|
||||
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue