//! The wasm side of the plugin tree: the host-side loader that runs a
//! `wasm32-unknown-unknown` plugin module through wasmtime and lends it the
//! native parallel decompressors it cannot carry itself.
//!
//! No ecosystem logic lives here. The modules this loads are built from the
//! repo-root `plugins/wasm/` crates, which are themselves ABI shims over a
//! `plugins/native/` crate — see `plugins/README.md`.
//!
//! Behind feature `wasm-plugins` (it pulls `wasmtime`), and re-exported one
//! level up as `crate::plugins::wasm_loader`.