postel 0.7.2

High level server for hyper and tower.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use error::{Error as TransportError, Kind as TransportErrorKind};
pub use http::serve_http_connection;
pub use http::serve_http_with_shutdown;
pub use tcp::serve_tcp_incoming;
pub use tls::load_certs;
pub use tls::load_private_key;
pub use tls::serve_tls_incoming;

mod error;
mod fuse;
mod http;
mod io;
mod tcp;
mod test;
mod tls;

pub(crate) type Error = Box<dyn std::error::Error + Send + Sync>;