1 | #![deny(missing_docs)] |
---|---|
2 | #![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))] |
3 | |
4 | //! Utilities for working with hyper. |
5 | //! |
6 | //! This crate is less-stable than [`hyper`](https://docs.rs/hyper). However, |
7 | //! does respect Rust's semantic version regarding breaking changes. |
8 | |
9 | #[cfg(feature = "client")] |
10 | pub mod client; |
11 | mod common; |
12 | pub mod rt; |
13 | #[cfg(feature = "server")] |
14 | pub mod server; |
15 | #[cfg(any(feature = "service", feature = "client-legacy"))] |
16 | pub mod service; |
17 | |
18 | mod error; |
19 |