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
10
11
//! Serve an [App](crate::App) over HTTP or HTTPS.
//!

mod acceptor;
mod io_stream;
mod serve;
mod server;
mod service;
mod shutdown;

pub use server::Server;