wasmcloud_component_adapters/lib.rs
1//! wasmCloud component adapters
2
3/// WASI preview1 -> preview2 component adapter for components of "command" type
4pub const WASI_PREVIEW1_COMMAND_COMPONENT_ADAPTER: &[u8] =
5 include_bytes!(env!("WASI_PREVIEW1_COMMAND_COMPONENT_ADAPTER"));
6
7/// WASI preview1 -> preview2 component adapter for components of "reactor" type
8pub const WASI_PREVIEW1_REACTOR_COMPONENT_ADAPTER: &[u8] =
9 include_bytes!(env!("WASI_PREVIEW1_REACTOR_COMPONENT_ADAPTER"));