loona 0.3.4

HTTP 1 and 2 on top of io_uring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! HTTP/1.1 <https://httpwg.org/specs/rfc9112.html>
//! HTTP semantics <https://httpwg.org/specs/rfc9110.html>

mod client;
pub use client::*;

mod server;
pub use server::*;

pub(crate) mod body;
pub(crate) mod parse;

pub mod encode;