actr-hyper 0.3.1

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
//! Dynclib actor execution engine
//!
//! Loads native shared libraries (.so/.dylib/.dll) compiled as cdylib actors.
//! Provides [`DynclibHost`] for library loading; per-instance workloads stay
//! internal to Hyper.

mod error;
mod host;

pub use error::DynclibError;
pub(crate) use host::DynClibWorkload;
pub use host::DynclibHost;