# Python cache and build artifacts
**/__pycache__
**/*.pyc
**/*.pyo
**/*.egg-info
**/.eggs
**/build
**/dist
**/*.so
**/.pytest_cache
**/.ruff_cache
**/.mypy_cache

# Virtual environments
**/.venv
**/venv
**/.env

# IDE
**/.vscode
**/.idea
**/*.swp
**/*.swo

# Git
**/.git
**/.gitignore

# Rust build artifacts
**/target
**/*.rs.bk
**/*.orig

# XMSS compiled library (rebuild in container)
xmss/libxmss.a

# ZK build artifacts (rebuilt inside the container)
zk-pow/src/circuit/cache.bin
zk-pow/bindings/go/zk_pow_ffi.h

