aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-21 22:49:16 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-21 22:49:16 -0400
commitfd12440dada3ca11f85f84eb53d2b05af50e26b8 (patch)
treebe7301c95c326237e863aef5b7c783e1ae3d9176
parentb724b7ea039ff9fb0ff17a79b90dd840691428f2 (diff)
downloadynab-export-fd12440dada3ca11f85f84eb53d2b05af50e26b8.tar.gz
ynab-export-fd12440dada3ca11f85f84eb53d2b05af50e26b8.zip
project skeleton
-rw-r--r--.gitignore2
-rw-r--r--Cargo.toml9
-rw-r--r--src/main.rs3
3 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..53eaa21
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/target
+**/*.rs.bk
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..5b6649e
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "ynab-export"
+version = "0.1.0"
+authors = ["Jesse Luehrs <doy@tozt.net>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}