From 43a9397f97c54767ea27be64fb831a4d7d89f4c0 Mon Sep 17 00:00:00 2001 From: Marek Counts Date: Fri, 25 Oct 2024 02:16:04 -0400 Subject: [PATCH] added gitignore --- .gitignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..909ff1e --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Generated by Cargo +# will have compiled files and executables +/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 + +**/target/ + +# These are created by the database +**/*.nnpack +**/*.npack + +**/*.nullsegment + +# Python +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so +# Jupyter Notebook +.ipynb_checkpoints + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/