hyperi-rustlib 2.7.0

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.
// Project:   hyperi-rustlib
// File:      src/transport/vector_compat/proto.rs
// Purpose:   Vector gRPC protobuf bindings
// Language:  Rust
//
// License:   FSL-1.1-ALv2
// Copyright: (c) 2026 HYPERI PTY LIMITED

//! Generated protobuf types for Vector wire protocol compatibility.
//!
//! Vendored from <https://github.com/vectordotdev/vector> (v2 gRPC protocol).
//! - `event` module: EventWrapper, Log, Value, Metric, Trace, etc.
//! - `vector` module: PushEvents service, PushEventsRequest/Response.

/// Event types from Vector's `event.proto` (package `event`).
#[allow(clippy::all, clippy::pedantic, deprecated)]
pub mod event {
    include!(concat!(env!("OUT_DIR"), "/event.rs"));
}

/// Vector gRPC service from `vector.proto` (package `vector`).
/// References event types via extern_path mapping in build.rs.
#[allow(clippy::all, clippy::pedantic)]
pub mod vector {
    include!(concat!(env!("OUT_DIR"), "/vector.rs"));
}