flarrow-flows 0.3.1

flarrow (flow + arrow) is a rust runtime/framework for building dataflow applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(crate) mod flows;

pub mod prelude {
    pub use crate::flows::*;

    pub use flarrow_api::{self, prelude::*};

    pub(crate) use thirdparty::*;

    pub mod thirdparty {
        pub use eyre::{self, Context, OptionExt, Result};
    }
}