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
# === Rust specific ===
# Compilation artifacts
/target/
# Dependencies
Cargo.lock
# Generated by Cargo
/.cargo/
# Crates.io index
/.cargo/registry/
/.cargo/git/
# Rustfmt generated files
**/*.rs.bk
# === Documentation ===
# Generated documentation
/target/doc/
# === Build tools ===
# Binaries for programs and tests
*.exe
*.out
*.app
*.dSYM
*.stackdump
# === Editor specific ===
# VS Code
.vscode/
*.code-workspace
# IDE specific (JetBrains, RustRover, etc.)
.idea/
/*.iml
# === Debugging ===
# Core dumps
core.*
# === Temporary files ===
# Temporary files from editors
*.swp
*.swo
*.bak
*.tmp
*.log
# Temporary files from MacOS
.DS_Store
.AppleDouble
.LSOverride
# === Git specific ===
# Ignoring Git files
*.orig
*.rej
# === Build tools ===
# Docker-related
docker-compose.override.yml
*.env
# === Testing ===
# Test coverage results
/coverage/
*.profraw
*.profdata