diff options
author | Leonard Kugis <leonard@kug.is> | 2025-10-06 15:35:57 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-10-06 15:35:57 +0200 |
commit | d0f9161188e70b1144db4739d97e20be872e06aa (patch) | |
tree | 8d9fd913724c1078018e819ded2625fafc7bff1d /.gitignore | |
parent | 460fe72c98204758b12931efb15f5a35b387d6f3 (diff) | |
download | squashr-d0f9161188e70b1144db4739d97e20be872e06aa.tar.gz |
Implemented as Makefile project
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -1,7 +1,8 @@ backup test -# Created by https://www.toptal.com/developers/gitignore/api/linux,windows,macos,vim -# Edit at https://www.toptal.com/developers/gitignore?templates=linux,windows,macos,vim + +# Created by https://www.toptal.com/developers/gitignore/api/rust,linux,windows,macos,vim +# Edit at https://www.toptal.com/developers/gitignore?templates=rust,linux,windows,macos,vim ### Linux ### *~ @@ -51,6 +52,22 @@ Temporary Items # iCloud generated files *.icloud +### Rust ### +# Generated by Cargo +# will have compiled files and executables +debug/ +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 + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + ### Vim ### # Swap [._]*.s[a-v][a-z] @@ -97,5 +114,5 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# End of https://www.toptal.com/developers/gitignore/api/linux,windows,macos,vim +# End of https://www.toptal.com/developers/gitignore/api/rust,linux,windows,macos,vim |