René Léveillé

Results 29 comments of René Léveillé

I'm having the same problem, here is the diagnostic ID: 6FFB1C97-796A-4F7E-9D82-F8B273BC20B2/20190619172808

Seeing as #1315 seems to have stalled since 2019. Seeing as StateFlow has been released, is there anything blocking the implementation of `withLatestFrom`? similarly to @uburoiubu I too find this...

> if you drop a link here with some examples of your code Unfortunately the code that uses `withLatestFrom` is closed source for now. But I can put a few...

Without getting into too much detail, The reason we have a list of flows is actually because its the end result of what we end up with after creating a...

This would be very useful, is there anyway that I could help to move this along if @AndrewScull is too busy?

@frykher see #2056 for the MR pertaining to enums

As an example of working around this limitation for CBOR encoding, I made [this declarative macro](https://github.com/1Password/passkey-rs/blob/main/passkey-types/src/utils/serde_workaround.rs) to rename the fields to numbers for CTAP2 encoding. You can see it' use...

Hi @Ben-Lichtman, the issue here is the use of [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) by the webauthn types which is readonly memory. When trying to serialize to `JSON` it will automatically "drop" the value...

`JsValueSerdeExt` does not. It uses the [`JSON.stringify` method internally](https://docs.rs/gloo-utils/latest/src/gloo_utils/format/json.rs.html#105) which transforms it to an empty map. See this [JSFiddle](https://jsfiddle.net/8esvn7r5/) as an example. Implementing `visit_map` will not help since the value...