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.
# Project:   hyperi-rustlib
# File:      clippy.toml
# Purpose:   Clippy linter configuration
# Language:  TOML
#
# License:   FSL-1.1-ALv2
# Copyright: (c) 2026 HYPERI PTY LIMITED

# Allow up to 7 function arguments
too-many-arguments-threshold = 7

# Cognitive complexity threshold
cognitive-complexity-threshold = 25

# Allow longer type complexity
type-complexity-threshold = 350

# Minimum lines for a function to be considered too long
too-many-lines-threshold = 150