diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ab951f8 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # ---> Rust | ||
| 2 | # Generated by Cargo | ||
| 3 | # will have compiled files and executables | ||
| 4 | debug/ | ||
| 5 | target/ | ||
| 6 | |||
| 7 | # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
| 8 | # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
| 9 | Cargo.lock | ||
| 10 | |||
| 11 | # These are backup files generated by rustfmt | ||
| 12 | **/*.rs.bk | ||
| 13 | |||
| 14 | # MSVC Windows builds of rustc generate these, which store debugging information | ||
| 15 | *.pdb | ||
| 16 | |||
| 17 | # RustRover | ||
| 18 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can | ||
| 19 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore | ||
| 20 | # and can be added to the global gitignore or merged into this file. For a more nuclear | ||
| 21 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. | ||
| 22 | #.idea/ | ||
