numcodecs_wasm_host_reproducible/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! [![CI Status]][workflow] [![MSRV]][repo] [![Latest Version]][crates.io] [![Rust Doc Crate]][docs.rs] [![Rust Doc Main]][docs]
//!
//! [CI Status]: https://img.shields.io/github/actions/workflow/status/juntyr/numcodecs-rs/ci.yml?branch=main
//! [workflow]: https://github.com/juntyr/numcodecs-rs/actions/workflows/ci.yml?query=branch%3Amain
//!
//! [MSRV]: https://img.shields.io/badge/MSRV-1.82.0-blue
//! [repo]: https://github.com/juntyr/numcodecs-rs
//!
//! [Latest Version]: https://img.shields.io/crates/v/numcodecs-wasm-host-reproducible
//! [crates.io]: https://crates.io/crates/numcodecs-wasm-host-reproducible
//!
//! [Rust Doc Crate]: https://img.shields.io/docsrs/numcodecs-wasm-host-reproducible
//! [docs.rs]: https://docs.rs/numcodecs-wasm-host-reproducible/
//!
//! [Rust Doc Main]: https://img.shields.io/badge/docs-main-blue
//! [docs]: https://juntyr.github.io/numcodecs-rs/numcodecs_wasm_host_reproducible
//!
//! Import a [`numcodecs`]-API-compatible [`DynCodec`][numcodecs::DynCodec]
//! from a WASM component inside a reproducible and fully sandboxed WebAssembly
//! runtime.

#![allow(clippy::multiple_crate_versions)] // FIXME

#[macro_use]
extern crate log;

mod codec;
mod engine;
mod logging;
mod stdio;
mod transform;

pub use codec::{ReproducibleWasmCodec, ReproducibleWasmCodecError, ReproducibleWasmCodecType};