# Rust/Cargo
target/
Cargo.lock
**/*.rs.bk
*.pdb

# IDEs
.vscode/
.idea/
*.swp
*.swo
.cursor/
*~

# OS
.DS_Store
Thumbs.db

# Debug folder
debug/

# Temporary files
*.tmp
*.temp

# Logs
*.log

# Test coverage
*.profraw

# Fuzzing
fuzz/artifacts/
fuzz/corpus/

# Benchmarks
criterion/

# Build artifacts
bin/
bootstrap

# Project documentation (internal)
RELEASE_PROCESS.md

# Security and audit reports (NEVER commit these)
audit_compliance_report.json
consolidated_audit_security_report.json
security_report.json
penetration_test_report.json
pentest_results_basic.json
security_scan_crypto.json
security_scan_static.json
olyntar_full_scan.json
test_scan.json
constant_time_analysis.json

# Test and benchmark results (should not be committed)
benchmark_results.json
edge_case_results.json
fuzz_results/
production_readiness_report.json
production_readiness_validation.py

# Audit preparation (sensitive)
audit_preparation/
audit_report_integration.py
generate_consolidated_audit_report.py
prepare_olyntar_audit.py

# Security testing (sensitive)
security_assessment.py
security_certification.py
security_scan.py
penetration_testing.py
penetration_test.py
vulnerability_assessment.py
verify_constant_time.py

# Chaos and stress testing results
chaos_test.py
stress_test.py
memory_exhaustion_test.py
performance_stress_test.py

# Debug binaries and executables
*_bin
debug_*
test_*

# Python cache and environments
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
ENV/
env.bak/
venv.bak/

# Conda environments
miniconda.sh
environment.yml

# Marketing and documentation scripts (internal)
create_marketing_materials.py
finalize_documentation.py
prepare_release_notes.py

# Deployment and monitoring (internal)
deployment_procedures.py
monitoring_observability.py
rollback_procedures.py
check_production_status.sh

# Formal verification (may contain sensitive proofs)
formal/

# Sage scripts (may contain sensitive mathematical proofs)
*.sage
*.sage.py

# Internal documentation (not for GitHub explore)
docs/API_FREEZE_CONFIRMATION.md
docs/API_STABILITY_ASSESSMENT.md
docs/API_STABILITY_GUARANTEES.md
docs/AUDITOR_README.md
docs/BACKWARD_COMPATIBILITY_GUARANTEES.md
docs/DEPRECATION_POLICY.md
docs/DOCUMENTATION_REPORT.md
docs/ECOSYSTEM_INTEGRATION.md
docs/FEATURE_HIGHLIGHTS.md
docs/IMPLEMENTATION_REPORT.md
docs/MARKETING_SUMMARY.md
docs/PERFORMANCE_BENCHMARKS.md
docs/PERFORMANCE_OPTIMIZATIONS.md
docs/PROJECT_OVERVIEW.md
docs/PYTHON_IMPLEMENTATION_README.md
docs/SECURITY_AUDIT_REPORT.md
docs/TARGET_AUDIENCE_MESSAGING.md
docs/TODO.md

# Jupyter notebook checkpoints
.ipynb_checkpoints/

# Python virtual environments (additional patterns)
.pytest_cache/
*.egg-info/
dist/
build/
*.egg

# Additional Rust build artifacts
*.rlib
*.rmeta
*.dSYM/

# Node.js (since you mentioned using bun)
node_modules/
package-lock.json
yarn.lock
bun.lockb

# Additional IDE files
*.code-workspace
.history/

# Additional OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Additional temporary files
*.bak
*.orig
*.rej

# Coverage reports
lcov-report/
coverage/
*.lcov

# Additional log files
logs/
*.log.*

# Database files (if any)
*.db
*.sqlite
*.sqlite3

# Environment files (additional patterns)
.env.local
.env.production
.env.staging
.env.test