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;
5pub(crate) mod io;
6#[cfg(all(any(feature = "client", feature = "server"), feature = "http1"))]
7pub(crate) mod task;
8#[cfg(any(
9 all(feature = "server", feature = "http1"),
10 all(any(feature = "client", feature = "server"), feature = "http2"),
11))]
12pub(crate) mod time;
13#[cfg(all(any(feature = "client", feature = "server"), feature = "http1"))]
14pub(crate) mod watch;