serverkit-hyper 0.4.0

Hyper HTTP/1 and HTTP/2 adapter for ServerKit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

#[cfg(any(feature = "std", feature = "tokio"))]
mod body;
#[cfg(any(feature = "std", feature = "tokio"))]
mod bridge;
mod run;
#[cfg(feature = "std")]
mod std_impl;
#[cfg(feature = "tokio")]
mod tokio_impl;

pub use run::Run;
pub use serverkit::prelude::*;