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
13
14
15
// Project:   hyperi-rustlib
// File:      src/config/sensitive.rs
// Purpose:   Re-export SensitiveString for backward compatibility
// Language:  Rust
//
// License:   FSL-1.1-ALv2
// Copyright: (c) 2026 HYPERI PTY LIMITED

//! Re-exports [`SensitiveString`] from the crate root for backward compatibility.
//!
//! The canonical location is now [`crate::sensitive`], which is always available
//! regardless of feature gates. This module preserves the old import path
//! `hyperi_rustlib::config::sensitive::SensitiveString`.

pub use crate::sensitive::*;