.gitignore 626 B

1234567891011121314151617181920
  1. # Created by https://www.toptal.com/developers/gitignore/api/rust
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=rust
  3. ### Rust ###
  4. # Generated by Cargo
  5. # will have compiled files and executables
  6. debug/
  7. target/
  8. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  9. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  10. Cargo.lock
  11. # These are backup files generated by rustfmt
  12. **/*.rs.bk
  13. # MSVC Windows builds of rustc generate these, which store debugging information
  14. *.pdb
  15. # End of https://www.toptal.com/developers/gitignore/api/rust