GitHub - makepad/stitch: Stitch is an experimental Wasm interpreter written in Rust that is designed to be very fast and lightweight.
Stitch
Stitch is an experimental Wasm interpreter written in Rust that is designed to be very fast and lightweight.
Caution
If you're planning to use Stitch for your project, you should consider the following carefully:
Stitch achieves its speed by relying on sibling call optimisation (sibling calls are a restricted form of tail calls in which the callee has the same signature as the caller). Rust doesn’t provide a mechanism to guarantee that tail calls are optimised, but in practice, LLVM auto...
Read more at github.com