hurley 0.1.5

A curl-like HTTP client with performance testing capabilities
1
2
3
4
5
6
7
8
9
10
11
12
//! Workflow execution module for hurley.
//!
//! This module provides functionality for executing sequences of HTTP requests
//! with conditionals and dependencies between steps.

pub mod config;
pub mod context;
pub mod runner;

pub use config::{Workflow, WorkflowStep};
pub use context::WorkflowContext;
pub use runner::WorkflowRunner;