http-wasm-guest 0.10.1

A Rust library for implementing HTTP-Wasm guest handlers.
Documentation
//! Host-side API surface for HTTP request/response interaction.
//!
//! This module provides access to request and response handles, header and body
//! manipulation utilities, logging, and feature configuration for `http-wasm`
//! guest plugins.
mod body;
mod bytes;
mod handler;
mod header;
mod request;
mod response;

pub mod admin;
pub mod feature;
pub mod log;

pub use body::Body;
pub use bytes::Bytes;
pub use header::Header;
pub use request::Request;
pub use response::Response;