via 2.0.0-gm.4

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Serve an [App](crate::App) over HTTP or HTTPS.
//!

mod accept;
mod io;
mod server;

#[cfg(any(feature = "native-tls", feature = "rustls"))]
mod tls;

use accept::accept;
pub use server::Server;