muji
muji
So this gets a bit strange, I have learnt that the multi-threaded `SharedArrayBuffer` issue was fixed in `getrandom` by forcing usage of an `Uint8Array` for the call to `Crypto.getRandomValues()`, see...
Looks like we need to wait for [this PR](https://github.com/rust-bitcoin/rust-secp256k1/pull/331) ([related issue](https://github.com/rust-bitcoin/rust-secp256k1/issues/328)) to land and then we should be good. I also wanted to update `pairing-plus` to use the latest version...
> Regarding `pairing-plus` issue, I believe we can eliminate this one by slightly modifying `curv` crate. We could (and should) make every curve support optional, so users could turn off...
@survived, if I do the work to support this would you land the PRs? At the moment this is a blocker for us as our use case is for MFA...
I hit a snag updating the webassembly demo to gg2020 using the state machine directly so I wrote a [test case](https://github.com/LavaMoat/gg2020-test) to interact with the state machine without any networking....
@survived, because in webassembly with `wasm-bindgen` it makes more sense to do the networking on the Javascript side. Whilst it is possible to make network connections in `js_sys` it is...
> @tmpfs does web assembly prevents you from using `async` code? I'm not saying you have to implement delivery logic within `Stream`/`Sink`, you can just use [`UnboundedReceiver`](https://docs.rs/futures/latest/futures/channel/mpsc/struct.UnboundedReceiver.html)/[`UnboundedSender`](https://docs.rs/futures/latest/futures/channel/mpsc/struct.UnboundedSender.html) and feed them...
Thanks for the explanation and rationale @survived! I wonder is this new version aspirational or is there some code that is work in progress I could take a look at?...
Just trying to share my `devDependencies` in a monorepo using `npx` and this would allow me to get it to work, getting really tired of managing many packages when they...
@aon, yes it compiles, the hacks are still necessary due to the use of rayon/threads in some of the dependencies. Ideally, multi-threaded operation should be configurable, see #154.