diff options
author | Leonard Kugis <leonard@kug.is> | 2025-04-23 16:51:55 +0000 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-04-23 16:51:55 +0000 |
commit | fd647f540792cba368f7d4193801004fa62435b2 (patch) | |
tree | c5b08f2928bbbde111f25d30a654d43a776445f0 /.gitignore | |
parent | eff36e6f573300d4a5a655ef61139731ac16691f (diff) | |
download | yara-compiler-fd647f540792cba368f7d4193801004fa62435b2.tar.gz yara-compiler-fd647f540792cba368f7d4193801004fa62435b2.tar.bz2 yara-compiler-fd647f540792cba368f7d4193801004fa62435b2.zip |
Added Rust files as stub
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 |