volo-http 0.5.5

HTTP framework implementation of volo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! HTTP transport related utilities

mod connector;
#[cfg(feature = "http1")]
pub mod http1;
#[cfg(feature = "http2")]
pub mod http2;
mod plain;
pub(crate) mod pool;
pub mod protocol;
#[cfg(feature = "__tls")]
mod tls;