Aurelia Molzer

Results 457 comments of Aurelia Molzer

There is not multithreading in js/wasm but you can try disabling the `rayon` feature: ``` [dependencies.image] version = "0.23.14" default-features = "false" features = ["gif", "jpeg", "ico", "png", "pnm", "tga",...

The `default = [..]` line tells cargo that the local crate should have some features on by default, and the `rayon` feature depends on `image/jpeg_rayon` which will also activate and...

Sure, `wasm` isn't quite as fast as native code and most of the jpeg performance comes from vectorization which you don't have at all in wasm (for now). The most...

Sounds good, please do. Directly discussing a PR has usually low friction for small changes that don't require larger design work / affect multiple components. In this case it seems...

@filnet Did you find the time for the research :)

I'm facing the same issue. As an explanation, URI encoding the slash should have the effect that it is _not_ interpreted as a hierarchical component in contrast to a literal...

> This however implies that maybe I should implement different Issuer for both access and refresh grants? Yes, indeed. The expiry time in the `Grant` is a suggestion, what will...

Without commenting on the complexity of the grant type, yes, I would be interested. It should be possible to re-use the existing primitives for this, i.e. a combination of issuer...

I'm afraid I won't have the time to do so myself in the nearby future. However, I'd be willing to provide some mentoring and code review on a PR.

The existing backend algorithms shouldn't become generic, I think this would vastly overcomplicate their analysis and testing. I would approach the problem this way: 1. Create a new state machine...