flarrow-message 0.3.1

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

pub mod prelude {
    pub use crate::helper::*;
    pub use crate::traits::*;

    pub use flarrow_message_derive::*;

    pub(crate) use thirdparty::*;

    pub mod thirdparty {
        pub use arrow_array;
        pub use arrow_buffer;
        pub use arrow_data;
        pub use arrow_schema;

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