# Rust build (if using Rust projects)
target/
# Cargo home directory inside the repo — only created in CI where
# CARGO_HOME is redirected here so GitLab can persist the registry +
# downloaded crates between jobs. Must be gitignored so `cargo publish`
# doesn't see these files as uncommitted changes.
.cargo-cache/
# General logs
*.log
# env
.env
# OS files
.DS_Store
Thumbs.db
# Temporary files
*.tmp
.temp/
# Node modules (if using Node.js projects)
node_modules/
# Python cache (if using Python projects)
__pycache__/
*.pyc
# IDE files
.vscode/
.idea/
*.swp
*.swo