Initial commit

This commit is contained in:
Dmitry Belyaev 2019-07-25 12:02:25 +03:00
commit c521489c08
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
**/*.rs.bk

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "chgk_txt2json"
version = "0.1.0"
authors = ["Dmitry <b4tm4n@mail.ru>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View File

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