1#[cfg(all(any(feature = "client", feature = "server"), feature = "http1"))]
2pub(crate) mod buf;
3#[cfg(all(feature = "server", any(feature = "http1", feature = "http2")))]
4pub(crate) mod date;
5#[cfg(all(feature = "client", feature = "http2"))]
6pub(crate) mod either;
7#[cfg(any(
8 all(feature = "client", any(feature = "http1", feature = "http2")),
9 all(feature = "server", feature = "http1"),
10))]
11pub(crate) mod future;
12pub(crate) mod io;
13#[cfg(all(any(feature = "client", feature = "server"), feature = "http1"))]
14pub(crate) mod task;
15#[cfg(any(
16 all(feature = "server", feature = "http1"),
17 all(any(feature = "client", feature = "server"), feature = "http2"),
18))]
19pub(crate) mod time;
20#[cfg(all(any(feature = "client", feature = "server"), feature = "http1"))]
21pub(crate) mod watch;