hyperi-rustlib 2.8.0

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
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
# Conventional commit validation hook
# Install: git config core.hooksPath .githooks

if command -v hyperi-ci >/dev/null 2>&1; then
    hyperi-ci check-commit "$1"
elif command -v uvx >/dev/null 2>&1; then
    uvx hyperi-ci check-commit "$1"
else
    echo "Warning: hyperi-ci not found — skipping commit validation" >&2
    exit 0
fi