1
2
3
4
5
6
7
8
9
10
11
//! utility module for useful middleware and service types.

pub mod middleware;

pub mod service;

#[cfg(any(feature = "http1", feature = "http2"))]
pub mod buffered;
pub(crate) mod futures;
#[cfg(feature = "runtime")]
pub(crate) mod timer;