11 lines
269 B
Rust
11 lines
269 B
Rust
// This crate manages the flowgraph datastructures and execution/scheduling
|
|
// as well as the communication between the blocks
|
|
|
|
pub mod block;
|
|
pub mod edge;
|
|
pub mod graph;
|
|
pub mod io;
|
|
pub mod stream;
|
|
pub mod tag;
|
|
pub use oxydsp_flowgraph_macros::{BlockIO, sync_block};
|