1 | #[cfg(any(feature = "http1", feature = "http2"))] |
---|---|
2 | mod client; |
3 | #[cfg(any(feature = "http1", feature = "http2"))] |
4 | pub use client::{Builder, Client, Error, ResponseFuture}; |
5 | |
6 | pub mod connect; |
7 | #[doc(hidden)] |
8 | // Publicly available, but just for legacy purposes. A better pool will be |
9 | // designed. |
10 | pub mod pool; |
11 |