Initial commit

This commit is contained in:
Dave Hrycyszyn
2019-11-25 15:42:31 +00:00
commit 3c64a2facd
4 changed files with 21 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
/target
**/*.rs.bk
/.idea/
Generated
+6
View File
@@ -0,0 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "nym-client"
version = "0.1.0"
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "nym-client"
version = "0.1.0"
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}