hyperi-rustlib 2.8.2

There's plenty of sage advice out there about how to run Rust services in production at scale — config cascades, structured logging, masking secrets, multi-backend secrets management, Prometheus, OpenTelemetry, Kafka transports, tiered disk-spillover sinks, adaptive worker pools, graceful shutdown — but almost none of it as code you can just install and use. This is that code. Opinionated, drop-in, working out of the box. The patterns from blog posts, watercooler chats and beers with your Google mates as actual library — not a framework you assemble from twenty crates and 8 weeks of munging.
Documentation
# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Environment
.env
.env.local
.env.*.local

# Build
*.log
dist/
dist-bin/
build/
out/
test-results/
coverage/

# Temporary/cache
.tmp/

# Rust
target/
Cargo.lock
**/*.rs.bk
*.pdb
*.profraw
*.profdata
coverage-html/
coverage.lcov
.cargo/
!.cargo/config.toml
!.cargo/audit.toml

# AI agent working files (not committed)
docs/superpowers/
.claude/
CLAUDE.md
STATE.md

# Git worktrees
.worktrees/

# Local working files (not committed)
hyperi-ai/
.mcp.json
TODO.md
.ai-version

# OS junk (never useful in repo)
.DS_Store
Thumbs.db
*.swp
*.swo
*~

# Editor / IDE local state
.idea/
.vscode/

# Local environment files (never commit -- contain secrets)
.env
.env.*
!.env.example
!.env.example.*

# here.
docs/superpowers/
.mcp.json
TODO.md
.ai-version

# Git worktrees (local dev convenience)
.worktrees/

# Rust build artefacts
target/
**/*.rs.bk
*.pdb
*.profraw
*.profdata
coverage-html/
coverage.lcov
tarpaulin-report.json
cobertura.xml

# cargo
.cargo/
!.cargo/config.toml