pipeflow 0.0.4

A lightweight, configuration-driven data pipeline framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Common types and utilities shared across pipeline components
//!
//! This module consolidates shared functionality used by source, sink, transform,
//! and engine modules to avoid circular dependencies and improve code organization.

#[cfg(any(feature = "http-client", feature = "http-server"))]
pub mod http;
pub mod message;
#[cfg(feature = "database")]
pub(crate) mod sql;
pub mod types;