summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-24 23:45:04 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-24 23:45:04 -0400
commit82203823d3f6c66b07ad00abc9f4d5abec7080a3 (patch)
tree33b06c0875d4a9c8c3234cd3407ddf83654b7306
parent87d7cf36fae9fa26816778e5e64c5afd6f21d5d8 (diff)
downloadmetabase-utils-82203823d3f6c66b07ad00abc9f4d5abec7080a3.tar.gz
metabase-utils-82203823d3f6c66b07ad00abc9f4d5abec7080a3.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..a956898
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "google-sheet-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!");
+}