hyperi-rustlib 1.20.1

Opinionated Rust framework for high-throughput data pipelines at PB scale. Auto-wiring config, logging, metrics, tracing, health, and graceful shutdown — built from many years of production infrastructure experience.
Documentation
# 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