# Cargo build output
/target/
debug/

# rustfmt backups
**/*.rs.bk

# MSVC debug info (cross-compile artifacts)
*.pdb

# cargo-mutants output
**/mutants.out*/

# Environment and secrets — never commit credentials
.env
.env.*
*.env

# Editor swap/backup files (Vim, Emacs)
*.swp
*.swo
*~
.#*
\#*\#

# JetBrains IDE workspace state (project settings may be committed, workspace state should not)
.idea/workspace.xml
.idea/usage.statistics.xml
.idea/shelf/

# OS artifacts
.DS_Store
Thumbs.db
desktop.ini

# Code coverage output
/coverage/
lcov.info
*.profraw
*.profdata

# Criterion benchmark results
/criterion/

# Python bytecode and test cache
__pycache__/
*.pyc
*.pyo
.pytest_cache/

# Node.js / TypeScript SDK
node_modules/
dist/
*.tsbuildinfo
