5 releases

new 0.18.2 Nov 13, 2024
0.18.1 Jul 23, 2021
0.18.0 Jul 20, 2021
0.18.0-pre.1 Jul 8, 2021
0.17.1 Oct 28, 2020

#402 in Magic Beans

Download history 2333/week @ 2024-07-29 2132/week @ 2024-08-05 1715/week @ 2024-08-12 1944/week @ 2024-08-19 1802/week @ 2024-08-26 2105/week @ 2024-09-02 1849/week @ 2024-09-09 2047/week @ 2024-09-16 2543/week @ 2024-09-23 1530/week @ 2024-09-30 1314/week @ 2024-10-07 3162/week @ 2024-10-14 3679/week @ 2024-10-21 3250/week @ 2024-10-28 3384/week @ 2024-11-04 3104/week @ 2024-11-11

13,457 downloads per month
Used in 2 crates

MIT license

1MB
25K SLoC

Wasmer logo

Build Status License Join the Wasmer Community Number of downloads from crates.io Read our API documentation

Wasmer singlepass backend

Wasmer is a standalone JIT WebAssembly runtime, aiming to be fully compatible with Emscripten, Rust and Go. Learn more.

This crate represents the Singlepass backend integration for Wasmer.

Usage

Usage in Wasmer Standalone

If you are using the wasmer CLI, you can specify the backend with:

wasmer run program.wasm --backend=singlepass

Usage in Wasmer Embedded

If you are using Wasmer Embedded, you can specify the singlepass backend to the compile_with function:

use wasmer_singlepass_backend::SinglepassCompiler;

// ...
let module = wasmer_runtime_core::compile_with(&wasm_binary[..], &SinglepassCompiler::new());

Dependencies

~9MB
~196K SLoC