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