# Rust build artifacts
/target/
/python/target/

# Cargo lock is typically committed for libraries, but not for applications
# For a library, we keep Cargo.lock

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

# OS
.DS_Store
Thumbs.db

# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
*.whl
.eggs/
