Stefan Battiston
Stefan Battiston
For others struggling with this like me, I've been able to work around this by setting the `-g` flag manually in my `cargo.toml` like this: ```toml [package.metadata.wasm-pack.profile.release] # previously had...
@RReverser Do I need to be building with nightly to use the `--profiling` flag? When I've tried before it just uses the release profile, which doesn't add debuginfo unless I...
If anyone is still looking at this, I was able to work around this using Serde to serialize/deserialize the data. This was the guide I used: https://rustwasm.github.io/docs/wasm-bindgen/reference/arbitrary-data-with-serde.html Edit: For those...
To use my package as an example, the entrypoint for it is a javascript file (index.js) that imports my wasm module/file and wraps some of the functionality, for example: ```javascript...