flarrow-layout 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
14
15
16
pub(crate) mod io;
pub(crate) mod layout;
pub(crate) mod node;

pub mod prelude {
    pub use crate::io::*;
    pub use crate::layout::*;
    pub use crate::node::*;

    pub(crate) use thirdparty::*;

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