| 1 | // SPDX-License-Identifier: Apache-2.0 OR MIT |
| 2 | |
| 3 | // https://docs.rs/futures/0.1 |
| 4 | #[cfg (feature = "futures01" )] |
| 5 | pub(crate) mod futures01; |
| 6 | // https://docs.rs/futures/0.3 |
| 7 | #[cfg (feature = "futures03" )] |
| 8 | pub(crate) mod futures03; |
| 9 | // https://docs.rs/rayon/1 |
| 10 | #[cfg (feature = "rayon" )] |
| 11 | pub(crate) mod rayon; |
| 12 | // https://docs.rs/serde/1 |
| 13 | #[cfg (feature = "serde" )] |
| 14 | pub(crate) mod serde; |
| 15 | // https://docs.rs/tokio/0.1 |
| 16 | #[cfg (feature = "tokio01" )] |
| 17 | pub(crate) mod tokio01; |
| 18 | // https://docs.rs/tokio/0.2 |
| 19 | #[cfg (feature = "tokio02" )] |
| 20 | pub(crate) mod tokio02; |
| 21 | // https://docs.rs/tokio/0.3 |
| 22 | #[cfg (feature = "tokio03" )] |
| 23 | pub(crate) mod tokio03; |
| 24 | // https://docs.rs/tokio/1 |
| 25 | #[cfg (feature = "tokio1" )] |
| 26 | pub(crate) mod tokio1; |
| 27 | // https://docs.rs/http-body/1 |
| 28 | #[cfg (feature = "http_body1" )] |
| 29 | pub(crate) mod http_body1; |
| 30 | |