.gitignore 591 B

123456789101112131415161718192021
  1. ### Rust template
  2. # Generated by Cargo
  3. # will have compiled files and executables
  4. debug/
  5. target/
  6. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  7. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  8. Cargo.lock
  9. # These are backup files generated by rustfmt
  10. **/*.rs.bk
  11. # MSVC Windows builds of rustc generate these, which store debugging information
  12. *.pdb
  13. ### rust-analyzer template
  14. # Can be generated by other build systems other than cargo (ex: bazelbuild/rust_rules)
  15. rust-project.json
  16. .idea