bb-runtime 0.3.3

Sans-IO engine for the bytesandbrains framework — Node, Engine, Framework, Backends, roles, snapshot, runtime-side syscalls.
//! The sans-IO Engine state machine

pub mod bootstrap;
pub mod call_context;
pub mod core;
pub mod dispatch_entry;
pub mod graph_slot;
pub mod invoke;
pub mod pending_async;
pub mod poll;
pub mod step;

pub use bootstrap::{
    BootstrapKind, BootstrapRequest, BootstrapStatus, ComponentBootstrap, InFlightBootstrap,
    ModuleBootstrap, OwnedBootstrapRequest, QueuedBootstrap, ReadyBootstrap,
};
pub use core::{Engine, EngineStats};
pub use dispatch_entry::{OpDispatch, StatelessInvokeFn};
pub use graph_slot::GraphSlot;
pub use invoke::make_protocol_dispatcher;
pub use pending_async::{ExecutionState, PendingAsync};
pub use step::EngineStep;