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
# Rust 构建产物
target/
Cargo.lock
# 开发工具
.vscode/
.idea/
.claude/
.trae/
# 测试和文档
tests/
examples/
docs/
benchmarks/
*.md
!README.md
# Git
.git/
.gitignore
.gitattributes
# 临时文件
*.log
*.tmp
*.swp
*~
.DS_Store
# Python 相关
__pycache__/
*.py[cod]
.pytest_cache/
.venv/
venv/
requirements.db
# 其他
.env
.env.local
*.bak
temp/
tmp/