hyperi-rustlib 1.18.0

Shared utility library for HyperI Rust applications
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