blob: 7a87e83f5120e472d15497a705a28b4b381149f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Generated by cargo mutants
# Contains mutation testing data
**/mutants.out*/
# Idea directory (RustRover)
.idea/
# All temp directory
**/.temp/
# Target directory
/target/
# Deploy directory
/deploy/
# Generated from templates
/src/data/compile_info.rs
/scripts/setup/windows/setup_jv_cli.iss
_*.rs
# Generated by the build system
/src/cmds/arg.rs
/src/cmds/cmd.rs
/src/cmds/collect.rs
/src/cmds/comp.rs
/src/cmds/converter.rs
/src/cmds/in.rs
/src/cmds/out.rs
/src/cmds/renderer.rs
/src/cmds/override/renderer.rs
# Symbolic links and shortcuts created by scripts
/deploy.lnk
/dev.lnk
/deploy
/dev
# todo files
*[T|t]odo*.txt
|