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
# Rust 构建产物
/target/
**/*.rs.bk
# Cargo 锁文件(库项目不提交 Cargo.lock)
Cargo.lock
# 调试符号
*.pdb
*.dSYM/
# IDE 和编辑器
.idea/
.vscode/
*.iml
.vs/
# Rust Analyzer
.rust-analyzer/
# 操作系统文件
.DS_Store
.AppleDouble
._*
Thumbs.db
Desktop.ini
$RECYCLE.BIN/
# 临时和备份文件
*.swp
*.swo
*~
*.bak
*.orig
# 日志
*.log
# 测试覆盖率
*.profraw
*.profdata
tarpaulin-report.html
cobertura.xml
# 性能分析
perf.data
perf.data.old
flamegraph.svg
# 基准测试结果
/benches/results/
# 缓存目录
.cache/
# 环境变量
.env
.env.local
.env.*.local