/ .gitignore
.gitignore
 1  # Generated by Cargo
 2  # will have compiled files and executables
 3  debug
 4  target
 5  
 6  # Certificates and Keys
 7  certs.pem
 8  key.pem
 9  
10  # These are backup files generated by rustfmt
11  **/*.rs.bk
12  
13  # MSVC Windows builds of rustc generate these, which store debugging information
14  *.pdb
15  
16  # Generated by cargo mutants
17  # Contains mutation testing data
18  **/mutants.out*/
19  
20  # generated by mdbook
21  book
22  
23  # RustRover
24  #  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
25  #  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
26  #  and can be added to the global gitignore or merged into this file.  For a more nuclear
27  #  option (not recommended) you can uncomment the following to ignore the entire idea folder.
28  #.idea/