hurley 0.1.3

A curl-like HTTP client with performance testing capabilities
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! HTTP client module for rurl.
//!
//! This module provides the core HTTP functionality including:
//! - [`HttpClient`] - Executes HTTP requests
//! - [`HttpRequest`] - Request builder with method, headers, body
//! - [`HttpResponse`] - Response with status, headers, body, timing

pub mod client;
pub mod request;
pub mod response;

pub use client::HttpClient;
pub use request::HttpRequest;
pub use response::HttpResponse;