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