1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! http/1 specific module for types and protocol utilities.

pub mod proto;

pub(crate) mod dispatcher;

mod body;
mod builder;
mod error;
mod service;

pub use self::body::RequestBody;
pub use self::error::Error;
pub use self::service::H1Service;

#[cfg(feature = "io-uring")]
mod dispatcher_uring;