From 1168d6c7a56a8e4c3ceeae738592379eb69baa52 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Wed, 26 Apr 2023 12:20:13 -0400 Subject: [PATCH] Ignore Cargo.lock Updated the .gitignore file to add Cargo.lock to be ignored. This file can safely be ignored and does not need to be checked into version control. --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 03f0978..2b9d83a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,14 @@ /target +# Rust + +# Rust stuff that we don't want to include in our source control + +# Don't include Cargo.lock +Cargo.lock + +# End Rust + # WADs # We want to be able to distribute the shareware WAD (this shouldn't change much)