scalo 2.10.4

Self-regulating runtime for hyperscale-grade data-plane services. Config, logging and metrics come pre-wired as singletons you just use -- then CLI, health probes, transport, backpressure, adaptive scaling and deployment contracts all build on that integration. Batteries included, idiomatic Rust. Sibling to the scalo package on PyPI (scalo-py).
Documentation
// Project:   scalo
// File:      tests/integration/mod.rs
// Purpose:   Integration test module declarations
// Language:  Rust
//
// License:   Apache-2.0
// Copyright: (c) 2026 HYPERI PTY LIMITED

// Always-compiled integration tests (core modules only)
mod env;
mod env_parity;

// Feature-gated integration tests. Each is gated on the library module it
// exercises so a partial `--features` run compiles instead of erroring (CI runs
// `features: all`, so all of these are on there). Matches env.rs's per-mod gating.
#[cfg(feature = "config")]
mod config_parity;

#[cfg(feature = "logger")]
mod logger_output;

#[cfg(feature = "metrics")]
mod metrics;

#[cfg(feature = "directory-config")]
mod directory_config;

#[cfg(feature = "expression")]
mod expression;