via 1.0.1

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
mod acceptor;

#[cfg(feature = "rustls")]
pub mod rustls;

#[cfg(not(feature = "rustls"))]
pub mod http;

pub use acceptor::Acceptor;