stormchaser-engine 1.4.2

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;
/// REST API step.
pub mod rest_api;
/// Slack ChatOps step.
pub mod slack;
/// SQL Execution step.
pub mod sql_execute;
/// Teams ChatOps step.
pub mod teams;
/// Terraform step orchestration.
pub mod terraform;
/// JUnit test report email step.
pub mod test_report_email;
mod utils;
/// WebAssembly module execution step.
pub mod wasm;
/// HTTP Webhook dispatching step.
pub mod webhook;