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
#[cfg(feature = "native-tls")]
pub mod native;

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

#[cfg(feature = "native-tls")]
pub use native::listen_native_tls;

#[cfg(feature = "rustls")]
pub use rustls::listen_rustls;