#![forbid(unsafe_code)]
#![deny(missing_docs)]
mod cap;
mod card;
mod function;
mod handle;
mod live;
mod live_control;
mod spec;
pub use cap::{
stream_control_capability, stream_open_capability, stream_read_capability,
stream_transform_capability, stream_write_capability,
};
pub use function::{
StreamPreludeLib, install_stream_prelude_lib, stream_card_symbol, stream_memory_specs_symbol,
stream_open_symbol, stream_pipe_symbol, stream_sink_packets_symbol, stream_write_symbol,
};
pub use handle::{RunReport, StageHandle, StreamHandle};
#[cfg(test)]
mod tests;