diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 25 |
1 files changed, 22 insertions, 3 deletions
@@ -1,6 +1,6 @@ yara -# Created by https://www.toptal.com/developers/gitignore/api/python,windows,linux,macos,visualstudiocode -# Edit at https://www.toptal.com/developers/gitignore?templates=python,windows,linux,macos,visualstudiocode +# Created by https://www.toptal.com/developers/gitignore/api/rust,linux,macos,python,windows,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=rust,linux,macos,python,windows,visualstudiocode ### Linux ### *~ @@ -222,6 +222,21 @@ poetry.toml # LSP config files pyrightconfig.json +### Rust ### +# Generated by Cargo +# will have compiled files and executables +debug/ + +# 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 + ### VisualStudioCode ### .vscode/* !.vscode/settings.json @@ -267,4 +282,8 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# End of https://www.toptal.com/developers/gitignore/api/python,windows,linux,macos,visualstudiocode
\ No newline at end of file +# End of https://www.toptal.com/developers/gitignore/api/rust,linux,macos,python,windows,visualstudiocode + +# Added by cargo + +/target |