1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Runtime library for flow execution. This will be linked with code generated from a flow definition
//! to enable it to be compiled and ran as a native program.
#[macro_use]
extern crate log;

pub mod info;
pub mod execution;
mod runlist;
pub mod value;
pub mod implementation;
pub mod function;
pub mod runnable;
pub mod zero_fifo;