fluke 0.1.1

An HTTP implementation on top of io_uring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 encode;
pub(crate) mod parse;