usher/extensions/mod.rs
1//! Extension implementations based on top of a `Router`.
2//!
3//! These structures are applicable in different circumstances, depending on
4//! what the developer is trying to do. Each extension is disabled by default
5//! and opt-in via build features. Whether these extensions live in this crate
6//! in future is yet to be determined; so be prepared for the possibility that
7//! this module disappear at some point in future (prior to v1.0).
8//!
9//! See the documentation for each extension to find the feature necessary to
10//! include the module. In general the name of the extension will match the
11//! feature, but this isn't always possible due to some Cargo behaviour.
12#[cfg(feature = "web")]
13pub mod http;