# Rust
/target/
**/*.rs.bk
# Cargo.lock is intentionally committed (not ignored) -- this crate builds
# a terminal artifact (a PyO3 extension / cdylib via maturin, plus the
# cargo-audit CI job reads it), not a library meant to be depended on by
# other crates, so pinning exact dependency versions for reproducible
# builds is the right default here.

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
.venv/
env/
ENV/

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

# Database
*.db
*.sqlite
*.sqlite3

# Environment
.env
.env.local

# OS
.DS_Store
Thumbs.db

# Builds
*.whl
*.tar.gz

# Runtime output (not source)
token_validations/
.coverage
