tower-web 0.3.7

Web framework with a focus on removing boilerplate
Documentation
#![doc(hidden)]

mod callsite;
pub use self::callsite::CallSite;
pub(crate) use self::callsite::Source;

pub mod bytes {
    //! Types provided by the `bytes` crate

    pub use bytes::*;
}

pub mod tower {
    //! Types provided by the `tower` crate

    pub use tower_service::Service;
}

pub mod http {
    //! Types provided by the `http` crate.
    pub use http::*;
}

pub mod futures {
    //! Types provided by the `futures` crate.
    pub use futures::*;
}

pub mod serde {
    pub use serde::*;
}

#[cfg(feature = "async-await-preview")]
pub mod async_await;