orka 0.2.0

An asynchronous, pluggable, and type-safe workflow engine for Rust, designed for orchestrating complex multi-step business processes.
Documentation
1
2
3
4
5
6
7
8
9
//! Defines the `Pipeline<T>` struct, its construction, modification, and execution logic.

pub mod definition;
pub mod execution;
pub mod hooks;
// Optional: pub mod merge; // If merge features are implemented

// Re-export the main Pipeline struct
pub use definition::Pipeline;