hyperi-rustlib 2.7.1

Opinionated, drop-in Rust toolkit for production services at scale. The patterns from blog posts as actual code: 8-layer config cascade, structured logging with PII masking, Prometheus + OpenTelemetry, Kafka/gRPC transports, tiered disk-spillover, adaptive worker pools, graceful shutdown.
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