flarrow-builtins 0.3.1

flarrow (flow + arrow) is a rust runtime/framework for building dataflow applications.
Documentation
pub(crate) mod enumeration;

pub(crate) mod printer;
pub(crate) mod timer;
pub(crate) mod transport;

pub mod prelude {
    pub use crate::enumeration::*;
    pub use crate::printer::*;
    pub use crate::timer::*;
    pub use crate::transport::*;

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

    pub(crate) use thirdparty::*;

    pub mod thirdparty {
        pub use serde_yml;

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