# Rust 构建产物
target/
**/*.rs.bk

# Python 缓存
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
*.egg-info/
dist/
build/

# R 缓存
.Rhistory
.RData
.Rproj.user/

# Git
.git/
.gitignore
.gitattributes

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# 测试数据（大文件）
tests/data/large/
tests/data/real_datasets/
benchmarks/data/
data/generated/
data/seurat-packages/
benchmark/results/
benchmark/notebooks/

# 参考实现源码
refs/

# R 包编译产物
crosscell-r/src/*.so
crosscell-r/src/*.o
crosscell-r/*.tar.gz

# 个人文件
自用/

# 文档
docs/
*.md
!README.md

# 临时文件
*.tmp
*.log

# OS
.DS_Store
Thumbs.db
