From 03a036efcedc0a04cc5861d2887c13e715c47c7d Mon Sep 17 00:00:00 2001 From: Maximilian Date: Tue, 10 Jan 2023 11:14:10 -0600 Subject: [PATCH] Update .gitignore, remove Cargo.lock --- .gitignore | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d114b83..7d9761c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,19 @@ -/target +# ---> Rust +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# JetBrains files /.idea -*.iml \ No newline at end of file +*.iml