From 41305ba223f2c0fe3a8c6384ad7bef818c9fa886 Mon Sep 17 00:00:00 2001 From: Elias Stepanik Date: Wed, 19 Feb 2025 13:06:17 +0100 Subject: [PATCH] Project Cleanup --- .gitignore | 20 +++++++++++++++++++- combine.sh | 1 - 2 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 combine.sh diff --git a/.gitignore b/.gitignore index ea8c4bf..401a158 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,19 @@ -/target +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ +Cargo.lock +combine.sh + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# RustRover +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +.idea/ \ No newline at end of file diff --git a/combine.sh b/combine.sh deleted file mode 100644 index 3b5094b..0000000 --- a/combine.sh +++ /dev/null @@ -1 +0,0 @@ -find src/ -type f -exec cat {} + > target/combined.txt