hotaru_http 0.8.3

HTTP/1.1 implementation for the Hotaru web framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! HTTP channel abstractions.
//!
//! - [`HttpChannel`] — version-agnostic I/O surface (parse/send request and
//!   response) that every HTTP version must implement.
//! - [`Http1Channel`] — HTTP/1.1 implementation backed by split reader/writer
//!   halves of a `ConnStream`.

pub mod http_channel;
pub mod http1;

pub use http_channel::HttpChannel;
pub use http1::Http1Channel;