.gitignore 518 B

123456789101112131415161718192021222324252627
  1. # ---> Rust
  2. # Compiled files
  3. *.o
  4. *.so
  5. *.rlib
  6. *.dll
  7. # Executables
  8. *.exe
  9. # Generated by Cargo
  10. /target/
  11. # Generated by Cargo
  12. # will have compiled files and executables
  13. debug/
  14. target/
  15. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  16. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  17. Cargo.lock
  18. # These are backup files generated by rustfmt
  19. **/*.rs.bk
  20. # MSVC Windows builds of rustc generate these, which store debugging information
  21. *.pdb