orka 0.3.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
10
//! Defines the `Pipeline<T>` struct, its construction, modification, and execution logic.

pub mod definition;
pub mod execution;
pub mod hooks;
pub mod runner;

pub use definition::Pipeline;
pub use execution::{PlannedAction, StepPlan};
pub use runner::PipelineRunner;