Stéphane Magnenat
Stéphane Magnenat
still relevant, especially as there is a PR waiting for review
This is blocked on https://github.com/rustwasm/wasm-bindgen/issues/3530.
@daxpedda thanks for the review. Yes so we I did not consider cross-thread compatibility, as the thread story on the web is shaky anyway, and we do not have use...
@daxpedda a question: how does `web-time` compare to [`instant`](https://crates.io/crates/instant)? Was there a specific reason for you not to the that one and create a new one?
Thanks for the explanation! Let's see what the others think about adding this dependency.
Just a note from a user here. We encountered the same issue as mentioned by @ashleygwilliams: We are using Typescript sources along with a Rust-based wasm helper. These are built...
@chriamue sorry I missed your ping, we use a similar work-around as @lynn, we create two packages and remap; here is an extract from our `jest.config.ts` ```javascript moduleNameMapper: { "app-core-web/pkg":...
Thank you very much for looking into this! > Is it possible to reproduce this using wasmtime? I do not know, I have a giant (14 MB) wasm file to...
The current way of doing feature detection with WASM on browsers is to try to load a small WASM with the specific feature and see whether it fails. See for...
Thank you both of you for your quick reaction and your attention!