hyper_util/lib.rs
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")]
10pub mod client;
11mod common;
12pub mod rt;
13#[cfg(feature = "server")]
14pub mod server;
15#[cfg(any(feature = "service", feature = "client-legacy"))]
16pub mod service;
17
18mod error;