aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-12 07:06:28 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-12 07:06:28 -0500
commitd660d974756415f86c100397db59a93b0b4b7273 (patch)
tree8ac3d970865e6473a50b914095c8e2b74a526311
parent3a2301c43aae3c13adef9ed8389adc872007ff3a (diff)
downloadvt100-test-d660d974756415f86c100397db59a93b0b4b7273.tar.gz
vt100-test-d660d974756415f86c100397db59a93b0b4b7273.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..5b74c72
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "vt100-test"
+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!");
+}