From 84214ba8676c16ba6f0e51688ae93a1d63625fdf Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Sat, 2 Sep 2017 04:21:43 -0400 Subject: [PATCH] Added the standard .gitignore file for rust projects. #1 Since this is a library the Cargo.lock file is listed so that it will not be checked in with the project. --- .gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3853ea9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Ignore swap files from text editors. +*.swp + +# Ignore compiled files. +*.o +*.so +*.rlib +*.dll +*.exe + +# Ignore files/directories generated by Cargo. +/target/ + +# Remove Cargo.lock from gitignore if creating an executable, +# leave it for libraries. +# More information here: http://doc.crates.io/guide.html#cargotoml-vs-cargolock +Cargo.lock