From 4ecf19ccd2bfeff777670fa6b6c49147f1631a13 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sun, 1 Jun 2025 14:09:57 -0500 Subject: [PATCH] added gitignore --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a15cf42 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Generated build directory +/target/ + +# Cargo’s lock file (uncomment if you’re publishing a library; otherwise keep it committed) +/Cargo.lock + +# If you use rustfmt’s override file +/override.toml + +# If you use sccache for caching +/.cache/sccache/ + +# If you build with Cargo’s check --unit-graph (creates a unit-graph.json) +/unit-graph.json + +# IDE/editor temporary files (optional) +/**/*.rs.bk +**/*.rs.orig +**/*.rs.rej +**/*~ +*.swp +*.swo \ No newline at end of file