actr-hyper 0.3.0

Hyper — Actor platform infrastructure: sandbox, transport, scheduler, WASM engine, signing, AIS bootstrap, persistence & crypto primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WASM workload execution engine (feature = "wasm-engine").
//!
//! Backed by the Component Model (wasmtime 43 + wit-bindgen) as of
//! Phase 1 Commit 2; see `core/framework/wit/actr-workload.wit` for the
//! contract.

pub(crate) mod component_bindings;
mod error;
mod host;

pub use error::WasmError;
pub use host::WasmHost;
pub(crate) use host::WasmWorkload;