daxpedda
daxpedda
> They are now primarily relying on aws-lc for crypto instead of ring (which is an optional dep). My understanding is that `aws-lc` is just a crypto provider, so it...
For example currently I'm working on implementing OPAQUE to be used on the client through WASM in the browser. This would require holding some secrets that should not leak to...
I just saw that it was also mentioned here: https://github.com/WebAssembly/design/issues/1397#issuecomment-926088470. As far as I understand it was only posted as a reference, my intention is also to re-post it here...
> Do you think an opt-in feature flag to bring in `notify` for this could work in your example cases? `notify` seems a bit heavy to make it a default....
Web has implemented [a](https://docs.rs/winit/0.30.3/winit/platform/web/enum.WaitUntilStrategy.html) [few](https://docs.rs/winit/0.30.3/winit/platform/web/enum.PollStrategy.html) ways to manage throttling. I also plan to expose a way to prevent screen dimming or system sleep (see #3351). I think that this area,...
> The point is that they add nothing valuable other than build CI time, only arm64 is sufficient to test 99% of the edge cases, because of different char. I...
> > We should probably avoid talking specifically about `webdriver.json` for `WASM_BINDGEN_TEST_WEBDRIVER_JSON` as the environment variables can point to a file with an arbitrary name. > > daxpedda Is there...
When I was still debugging this I tried Quiche as a client as well and was unable to reproduce the issue with it. Looking at Wireshark back then however gave...
The reason this is in place is for consistency between platforms. You can use `spawn()` to get the desired behavior. Is there an issue with using `spawn()` for your use-case?
Ah, I see, my bad, I didn't read the OP carefully enough as well. > I'd generally lift the restriction on the event loop creation from at least the backend...