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

# Python build artifacts
dist/
build/
wheels/
*.egg-info/
.eggs/
pip-wheel-metadata/

# Python bytecode / caches
__pycache__/
*.py[cod]
*$py.class

# Virtualenvs
.venv/
venv/
env/
.python-version

# Test / coverage caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
*.cover

# Maturin
.maturin/

# Compiled extension modules (built into python/sqlast/ by `maturin develop`)
*.so
*.pyd
*.dylib

# Editor / OS
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db

# Secrets / env
.env
.env.*
!.env.example
