znippy-common 0.9.14

Core logic and data structures for Znippy, a parallel chunked compression system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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`.

pub mod wasm_loader;