//! Runtime backend selection for generated WASM code.
//!
//! Native builds use Wasmtime directly, while `wasm32` builds use YARA-X's
//! browser-oriented custom runtime.
// Native builds execute generated WASM through Wasmtime.
// Browser builds execute generated WASM through the host WebAssembly runtime.
pub use *;
pub use *;