1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#![forbid(unsafe_code)]
pub use futures;
mod async_runtime;
pub mod collect_and_apply;
pub mod combinations;
pub mod keep_first_n;
pub mod permutations;
pub use collect_and_apply::CollectAndAppliable;
pub use combinations::Combinable;
pub use keep_first_n::KeepFirstN;
pub use permutations::Permutable;
pub use arrayvec;
pub use futures::StreamExt;
pub use gen_nested_iter_yield;
pub use genawaiter;
pub use once_cell;
#[cfg(feature = "io")]
pub use async_compression;
#[cfg(feature = "io")]
pub use csv_async;
#[cfg(feature = "io")]
pub use flate2;
#[cfg(feature = "io")]
pub use serde;
#[cfg(feature = "io")]
pub use tokio;
#[cfg(feature = "io")]
pub use tokio_util;
#[cfg(feature = "io")]
pub use tokio_util::compat::TokioAsyncReadCompatExt;