sidevm_host_runtime/
lib.rs

1mod async_context;
2mod env;
3mod metering;
4mod resource;
5#[cfg(feature = "rocket-stream")]
6pub mod rocket_stream;
7mod run;
8pub mod service;
9mod tls;
10
11pub use env::{
12    vm_count, CacheOps, DynCacheOps, OcallAborted, OutgoingRequest, OutgoingRequestChannel, ShortId,
13};
14
15pub type VmId = [u8; 32];
16pub use run::{WasmRun, WasmEngine, WasmInstanceConfig, WasmModule};
17
18pub use service::IncomingHttpRequest;
19pub use sidevm_env::OcallError;