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!"); +}