So I've got a couple questions:
- What is a good and high-quality
no_std
WASM runtime? I know that Wasmtime exists but that's not no_std and probably won't be for a while. - What is a good process for getting started writing WASM binaries in a non-web environment? All the WASM stuff I've seen -- even the WASM book that Rust has -- talks about using WASM in a web browser, but I want to do it in a non-web browser context, so none of the web crates will satisfy.
Thoughts?