Re-exports

pub extern crate serde_json;
pub extern crate tokio;
pub use crate::app::app::App;
pub use crate::app::run;
pub use crate::core::graph::Graph;
pub use crate::core::graph::builder::GraphBuilder;
pub use crate::core::pipeline::builder::PipelineBuilder;
pub use crate::core::value::Value;
pub use crate::core::object::Object;

Macros

Construct a serde_json::Value from a JSON literal.

Attribute Macros

Marks async function to be executed by selected runtime. This macro helps set up a Runtime without requiring the user to use Runtime or Builder directly.