iridis-runtime-core 0.4.0

iridis is a framework that lets you define and build dataflow applications with ease.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This module defines the `core` elements common to crates related to the `runtime`.

pub(crate) mod node;

/// This prelude contains everything you need to use this crate.
pub mod prelude {
    pub use crate::node::*;

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

    pub(crate) use thirdparty::*;

    pub mod thirdparty {
        pub use libloading;

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