# =========================================================
# Rust / Cargo
# =========================================================
# This is the main build directory where all compiled artifacts are stored.
# It's the most important entry for any Rust project.
/target/

# =========================================================
# Python
# =========================================================
# Bytecode and compiled files
__pycache__/
*.pyc
*.pyo
*.pyd

# Virtual environments - add others if you use different names
venv/
.venv/
env/
.env/

# Packaging and testing artifacts
.eggs/
*.egg-info/
dist/
build/
.pytest_cache/
.tox/
wheels/

# =========================================================
# IDEs and Editors
# =========================================================
.vscode/
.idea/
*.sublime-project
*.sublime-workspace

# =========================================================
# Operating System Files
# =========================================================
# macOS
.DS_Store

# Windows
Thumbs.db
