4个版本

0.18.1 2021年7月23日
0.18.0 2021年7月20日
0.18.0-pre.12021年7月8日
0.17.1 2020年10月28日

#2032 in 魔法豆

Download history • Rust 包仓库 3680/week @ 2024-03-14 • Rust 包仓库 2594/week @ 2024-03-21 • Rust 包仓库 2249/week @ 2024-03-28 • Rust 包仓库 4195/week @ 2024-04-04 • Rust 包仓库 3641/week @ 2024-04-11 • Rust 包仓库 2783/week @ 2024-04-18 • Rust 包仓库 2788/week @ 2024-04-25 • Rust 包仓库 3394/week @ 2024-05-02 • Rust 包仓库 2811/week @ 2024-05-09 • Rust 包仓库 3066/week @ 2024-05-16 • Rust 包仓库 2710/week @ 2024-05-23 • Rust 包仓库 5086/week @ 2024-05-30 • Rust 包仓库 3783/week @ 2024-06-06 • Rust 包仓库 3645/week @ 2024-06-13 • Rust 包仓库 3041/week @ 2024-06-20 • Rust 包仓库 1992/week @ 2024-06-27 • Rust 包仓库

13,604 每月下载量
用于 2 crates

MIT 许可证

1MB
25K SLoC

Wasmer logo

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

Wasmer单遍后端

Wasmer是一个独立的JIT WebAssembly运行时,旨在完全兼容Emscripten、Rust和Go。了解更多

这个crate代表Wasmer的单遍后端集成。

用法

在Wasmer Standalone中的用法

如果您正在使用wasmer CLI,您可以使用以下命令指定后端:

wasmer run program.wasm --backend=singlepass

在Wasmer Embedded中的用法

如果您正在使用Wasmer Embedded,您可以将singlepass后端指定给compile_with函数

use wasmer_singlepass_backend::SinglepassCompiler;

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

依赖

~10MB
~209K SLoC