stormchaser-engine 1.3.1

A robust, distributed workflow engine for event-driven and human-triggered workflows.
Documentation
//! Intrinsic step types that are built into the Stormchaser engine.

/// Email sending step.
pub mod email;
/// Built-in git checkout operations.
pub mod git_checkout;
/// Jinja template evaluation step.
pub mod jinja;
/// JQ JSON processing step.
pub mod jq;
/// AWS Lambda function execution step.
pub mod lambda;
/// Terraform step orchestration.
pub mod terraform;
/// JUnit test report email step.
pub mod test_report_email;
/// WebAssembly module execution step.
pub mod wasm;
/// HTTP Webhook dispatching step.
pub mod webhook;