hyperi-rustlib 2.6.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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Project:   hyperi-rustlib
// File:      tests/e2e/mod.rs
// Purpose:   E2E test module declarations
// Language:  Rust
//
// License:   FSL-1.1-ALv2
// Copyright: (c) 2026 HYPERI PTY LIMITED

#[cfg(feature = "transport-grpc")]
mod grpc_transport;

#[cfg(feature = "transport-kafka")]
mod kafka;

#[cfg(feature = "transport-grpc-vector-compat")]
mod vector_compat;