4 releases

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

#2279 in Magic Beans

Download history 1714/week @ 2023-12-18 555/week @ 2023-12-25 1167/week @ 2024-01-01 1840/week @ 2024-01-08 2607/week @ 2024-01-15 2737/week @ 2024-01-22 2424/week @ 2024-01-29 2130/week @ 2024-02-05 1763/week @ 2024-02-12 1993/week @ 2024-02-19 2487/week @ 2024-02-26 3210/week @ 2024-03-04 3136/week @ 2024-03-11 3692/week @ 2024-03-18 2121/week @ 2024-03-25 3629/week @ 2024-04-01

12,816 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

~9.5MB
~202K SLoC