flows/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3#![no_std]
4#![forbid(unsafe_code)]
5//#![allow(unused)]
6
7extern crate alloc;
8
9#[cfg(feature = "std")]
10extern crate std;
11
12pub use async_flow::*;
13
14#[cfg(feature = "audio")]
15pub use flows_audio as audio;
16
17#[cfg(feature = "datafusion")]
18pub use flows_datafusion as datafusion;
19
20#[cfg(feature = "derive")]
21pub use flows_derive as derive;
22
23#[cfg(feature = "hash")]
24pub use flows_hash as hash;
25
26#[cfg(feature = "image")]
27pub use flows_image as image;
28
29#[cfg(feature = "io")]
30pub use flows_io as io;
31
32#[cfg(feature = "json")]
33pub use flows_json as json;
34
35#[cfg(feature = "math")]
36pub use flows_math as math;
37
38#[cfg(feature = "rand")]
39pub use flows_rand as rand;
40
41#[cfg(feature = "text")]
42pub use flows_text as text;
43
44#[doc = include_str!("../../../README.md")]
45#[cfg(doctest)]
46pub struct ReadmeDoctests;