wabt-rs
wabt-rs copied to clipboard
Expose the wabt interpreter API
This would be useful for some use cases since benchmarks show that wabt's speed currently is much better than any other interpreter.
The alternative is to use wasm-c-api -- there is https://github.com/WebAssembly/wabt/issues/1158 filed for that. It might be a good idea to develop generic wasm-c-api wrapper, so the users will be agnostic to an engine implementation (wabt, v8, wasmtime).
@yurydelendik yes, wasm-c-api would be nice, but still waiting for VMs to adopt it.
wasm-c-api would be nice, but still waiting for VMs to adopt it.
@axic The wasm-c-api is being developed on top of v8. I'm currently working on its implementation in wasmtime.