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 a77d866 commit 15f650aCopy full SHA for 15f650a
Cargo.toml
@@ -17,7 +17,7 @@ features = ["full"]
17
rustdoc-args = ["--cfg", "docsrs"]
18
19
[dependencies]
20
-hyper = "1.2.0"
+hyper = "1.3.0"
21
futures-util = { version = "0.3.16", default-features = false }
22
http = "1.0"
23
http-body = "1.0.0"
src/lib.rs
@@ -12,11 +12,8 @@ mod common;
12
pub mod rt;
13
#[cfg(feature = "server")]
14
pub mod server;
15
-#[cfg(all(
16
- feature = "service",
- any(feature = "http1", feature = "http2"),
- any(feature = "server", feature = "client")
-))]
+#[cfg(all(feature = "service"))]
+#[cfg_attr(docsrs, doc(cfg(feature = "service")))]
pub mod service;
mod error;
0 commit comments