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
# Ignore Cargo build artifacts in all folders
**/target/
# rustc / build by-products (in case they appear outside target)
**/*.o
**/*.d
**/*.rmeta
**/*.rlib
# OS / binary artifacts (any platform, any depth)
**/*.exe
**/*.dll
**/*.pdb
**/*.so
**/*.dylib
**/*.a
# rustfmt backups
**/*.rs.bk
# Coverage and profiling
**/coverage/
**/*.profraw
**/*.profdata
# IDE/editor settings (any depth)
**/.vscode/
**/.idea/
**/.vs/
**/*.swp
**/*.swo
# Logs
**/*.log
# OS cruft
**/.DS_Store
**/Thumbs.db
# Ignore Cargo.lock for libraries
Cargo.lock