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
35
36
37
38
39
40
41
42
43
44
45
46
47
#![forbid(unsafe_code)]

pub use futures;
mod async_runtime;
pub mod collect_and_apply;
pub mod combinations;
pub mod keep_first_n;
pub mod marifold;
pub mod multi_consumer_stream;
pub mod permutations;
pub mod run_stream;

pub use collect_and_apply::CollectAndAppliable;
pub use combinations::Combinable;
pub use keep_first_n::KeepFirstN;
pub use marifold::Marifold;
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(any(feature = "tokio", feature = "async-std"))]
pub use num_cpus;

#[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::io::AsyncWriteExt;
#[cfg(feature = "io")]
pub use tokio_util;
#[cfg(feature = "io")]
pub use tokio_util::compat::TokioAsyncReadCompatExt;
#[cfg(feature = "io")]
pub use tokio_util::compat::TokioAsyncWriteCompatExt;
#[cfg(feature = "io")]
pub mod writer;