From b3bcfc5a3f7095b963e901ad48febf7cc1a3854f Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Wed, 25 Nov 2020 19:39:30 -0500 Subject: [PATCH] hello world scarytxt --- .gitignore | 16 +++++++--------- scarytxt/Cargo.lock | 5 +++++ scarytxt/Cargo.toml | 9 +++++++++ scarytxt/src/main.rs | 3 +++ 4 files changed, 24 insertions(+), 9 deletions(-) create mode 100644 scarytxt/Cargo.lock create mode 100644 scarytxt/Cargo.toml create mode 100644 scarytxt/src/main.rs diff --git a/.gitignore b/.gitignore index f48dc7f..850647d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,13 @@ -/postgresql/tutorial/weather/data/ -/arduino/arduino.mk -/arduino/libraries/.raw/ -/arduino/libraries/* -.dep *.hex *.log *env -*.dat - -/oldstuff/intro-to-crafty/lib/crafty.js +.dep +/arduino/arduino.mk +/arduino/libraries/* +/arduino/libraries/.raw/ /oldstuff/intro-to-crafty/assets/* +/oldstuff/intro-to-crafty/lib/crafty.js /oldstuff/intro-to-crafty/tmp/* - +/postgresql/tutorial/weather/data/ +/scarytxt/target/ /vuefun/build/ diff --git a/scarytxt/Cargo.lock b/scarytxt/Cargo.lock new file mode 100644 index 0000000..0b725df --- /dev/null +++ b/scarytxt/Cargo.lock @@ -0,0 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "scarytxt" +version = "0.1.0" diff --git a/scarytxt/Cargo.toml b/scarytxt/Cargo.toml new file mode 100644 index 0000000..c4ed582 --- /dev/null +++ b/scarytxt/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "scarytxt" +version = "0.1.0" +authors = ["Dan Buch "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/scarytxt/src/main.rs b/scarytxt/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/scarytxt/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}