34 lines
399 B
Plaintext
34 lines
399 B
Plaintext
|
|
# Rust build artifacts
|
||
|
|
target/
|
||
|
|
**/*.pdb
|
||
|
|
|
||
|
|
# Documentation and development files
|
||
|
|
docs/progress/
|
||
|
|
*.md
|
||
|
|
!README.md
|
||
|
|
|
||
|
|
# Git and version control
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# IDE and editor files
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
|
||
|
|
# OS specific files
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Test and coverage files
|
||
|
|
tests/
|
||
|
|
lcov.info
|
||
|
|
coverage.json
|
||
|
|
|
||
|
|
# Scripts and tools
|
||
|
|
scripts/
|
||
|
|
|
||
|
|
# Large binary assets that aren't needed for build
|
||
|
|
src/*.woff2
|