62 lines
602 B
Plaintext
62 lines
602 B
Plaintext
# Build artifacts
|
|
target/
|
|
*.rlib
|
|
*.rmeta
|
|
*.d
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE and editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Documentation (not needed in container)
|
|
docs/
|
|
*.md
|
|
!README.md
|
|
|
|
# CI/CD configs
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Development files
|
|
Makefile
|
|
justfile
|
|
.cargo/
|
|
rustfmt.toml
|
|
clippy.toml
|
|
|
|
# Test artifacts
|
|
*.log
|
|
coverage/
|
|
*.profraw
|
|
*.profdata
|
|
|
|
# Examples and demos (optional)
|
|
demos/ui/
|
|
|
|
# Integration tests (excluded from workspace)
|
|
integration_tests/
|
|
|
|
# Benchmarks data
|
|
*.csv
|
|
*.json
|
|
!Cargo.lock
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|