40 releases (15 stable)

new 3.2.0-beta.1 Mar 23, 2023
3.1.0 Dec 12, 2022
3.0.2 Nov 26, 2022
3.0.0-alpha.4 Jul 29, 2022
1.0.0-alpha5 Nov 6, 2020

#28 in WebAssembly

Download history 24216/week @ 2022-12-02 29573/week @ 2022-12-09 23058/week @ 2022-12-16 8072/week @ 2022-12-23 12931/week @ 2022-12-30 19606/week @ 2023-01-06 14066/week @ 2023-01-13 15458/week @ 2023-01-20 17691/week @ 2023-01-27 23871/week @ 2023-02-03 23800/week @ 2023-02-10 24530/week @ 2023-02-17 19380/week @ 2023-02-24 25231/week @ 2023-03-03 22938/week @ 2023-03-10 15245/week @ 2023-03-17

87,320 downloads per month
Used in 37 crates (13 directly)

MIT OR Apache-2.0 WITH LLVM-exception

720KB
15K SLoC

wasmer-compiler-cranelift Build Status Join Wasmer Slack MIT License crates.io

This crate contains a compiler implementation based on Cranelift.

Usage

use wasmer::{Store, EngineBuilder};
use wasmer_compiler_cranelift::Cranelift;

let compiler = Cranelift::new();
let mut store = Store::new(compiler);

Note: you can find a full working example using Cranelift compiler here.

When to use Cranelift

We recommend using this compiler crate only for development proposes. For production we recommend using wasmer-compiler-llvm as it offers a much better runtime speed (50% faster on average).

Acknowledgments

This project borrowed some of the function lowering from cranelift-wasm.

Please check Wasmer ATTRIBUTIONS to further see licenses and other attributions of the project.

Dependencies

~15MB
~313K SLoC