about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-22T15·21+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-22T15·21+0200
commitaabac498e76339d7c47a0bf39dbb883b3a3e4407 (patch)
tree858eda57a412b82d83eb933a594e2dcbca9f6fec
parentdadaa33003877aa8e94e8d611e60138682eb1a9a (diff)
chore: Bootstrap Cargo project
-rw-r--r--.gitignore3
-rw-r--r--Cargo.toml6
2 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..6aa106405a4b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/target/
+**/*.rs.bk
+Cargo.lock
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 000000000000..0fcd60373ff7
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "defer"
+version = "0.1.0"
+authors = ["Vincent Ambo <tazjin@gmail.com>"]
+
+[dependencies]