-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
99 lines (82 loc) · 1.37 KB
/
.gitignore
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Ignore the target directory, which contains compiled artifacts.
target/
# Ignore debug and release output directories.
debug/
release/
# Ignore build artifacts.
**/*.rs.bk
**/*.d
**/*.exe
**/*.ilk
**/*.lib
**/*.meta
**/*.obj
**/*.pdb
**/*.pyc
**/*.rmeta
**/*.rlib
**/*.s
**/*.so
# Ignore Cargo.lock (if you have a binary or if building dependencies isn't reproducible)
# Uncomment the following line if you're building a library and want to ensure dependencies remain consistent.
# Cargo.lock
# Ignore .cargo, which may contain sensitive information.
.cargo/
# Ignore the generated documentation.
target/doc/
# Ignore IDE-specific files.
.idea/
.vscode/
# Ignore backup files created by editors.
*.swp
*.swo
*.bak
*.tmp
*.orig
# Ignore macOS-specific files.
.DS_Store
# Ignore Linux-specific files.
*~
# Ignore Windows-specific files.
Thumbs.db
Desktop.ini
# Ignore Makefile-specific artifacts.
*.d
*.o
*.obj
*.a
*.lo
*.la
*.lai
*.out
*.so
*.so.*
*.dylib
*.dll
*.lib
*.exe
*.app
# Ignore LLVM-related files.
*.ll
*.bc
*.opt
*.llvmbc
*.llvms
*.llvmo
*.llvmd
# Ignore intermediate files generated by clang/llvm.
*.s
*.bc
# Ignore auto-generated Makefiles.
Makefile.in
Makefile.am
# Ignore CMake files if using CMake for some parts.
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
CMakeLists.txt.user
# Ignore Rust toolchain files.
.rustup/
# Ignore LLVM coverage files.
*.profraw
*.profdata