We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2388fa commit 0d15dadCopy full SHA for 0d15dad
src/lib.rs
@@ -16,10 +16,6 @@
16
17
use futures::future::BoxFuture;
18
19
-#[cfg_attr(feature = "docs", doc(cfg(curl_client)))]
20
-#[cfg(all(feature = "hyper_client", not(target_arch = "wasm32")))]
21
-pub mod hyper;
22
-
23
#[cfg_attr(feature = "docs", doc(cfg(curl_client)))]
24
#[cfg(all(feature = "curl_client", not(target_arch = "wasm32")))]
25
pub mod isahc;
@@ -36,6 +32,10 @@ pub mod native;
36
32
#[cfg(feature = "h1_client")]
37
33
pub mod h1;
38
34
35
+#[cfg_attr(feature = "docs", doc(cfg(hyper_client)))]
+#[cfg(feature = "hyper_client")]
+pub mod hyper;
+
39
/// An HTTP Request type with a streaming body.
40
pub type Request = http_types::Request;
41
0 commit comments