scalo 2.10.11

Self-regulating runtime for Rust data-plane services. Backpressure, load shedding and adaptive scaling are on by default.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Project:   scalo
// File:      src/config/sensitive.rs
// Purpose:   Re-export SensitiveString for backward compatibility
// Language:  Rust
//
// License:   Apache-2.0
// 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
//! `scalo::config::sensitive::SensitiveString`.

pub use crate::sensitive::*;