From 9e0a813db1a01bcc72180bab50cfb41028d9eee2 Mon Sep 17 00:00:00 2001 From: Myrddin Dundragon Date: Tue, 21 Oct 2025 12:07:05 -0400 Subject: [PATCH] Updated the gitignore so Cargo.lock isn't included --- .gitignore | 18 +++++++++++++++--- Cargo.lock | 7 ------- 2 files changed, 15 insertions(+), 10 deletions(-) delete mode 100644 Cargo.lock diff --git a/.gitignore b/.gitignore index 5757306..3853ea9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,17 @@ -# Added by cargo - +# Ignore swap files from text editors. *.swp -/target +# 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 diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 6df07f4..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "rune" -version = "0.4.0"