pipx 0.1.0

Composable pipelines for Rust with synchronous and asynchronous execution, middleware-style processing, and predictable data flow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod pipeline;

#[cfg(feature = "async")]
mod async_pipeline;

/// Synchronous pipeline types and helpers.
pub use pipeline::*;

#[cfg(feature = "async")]
/// Asynchronous pipeline types and helpers.
pub use async_pipeline::*;