Makepad-stitch: WASM interpreter in Rust, 15kloc, 0 deps, faster than wasm3
Stitch is an experimental Wasm interpreter written in Rust that is designed to be very fast and lightweight. - makepad/stitch... (more…)
Read more »Rust’s concurrency safety is based around the Send and Sync traits. For people writing safe code, you don’t really need to understand these traits on a deep level, only enough to satisfy the compiler when it spits errors at you (or switch from std threads… Read more