Aurelia Molzer
Aurelia Molzer
What's your processor config? I can't reproduce this on x86_64 so assuming this is architecture dependent and some improper SIMD (or non-SIMD) code that is responsible. ``` $ cat /proc/cpuinfo...
Assuming I messed up in https://github.com/etemesi254/zune-image/pull/299 in the non-SIMD path? Since that's the neon code that is getting executed. Great 🫤
I can reproduce it with SIMD turned off on x86_64 as well, seems pretty likely to be the culprit.
Since we identified the fault, a workaround should be to downgrade `zune-jpeg` to `0.5.5`: ``` cargo update -p [email protected] --precise 0.5.5 ``` Or add an equivalent constraint in any local...
Thanks @etemesi254, I'm looking to improve the test suite coverage so CI catches this when I'm only testing on recent x86_64 myself.
I have a, maybe, more concrete list of requirements that seems to match the above problem description. In short, I'm trying to have an application implement an authentication style of...
I'm using it through `quinn` so unfortunately, no. Maybe that should be escalated upstream since its [`Incoming`](https://docs.rs/quinn/latest/quinn/struct.Incoming.html) does not expose it in this way. Having a sans-IO state machine is...
What about a strong opaque type around `Box`? It could implement a deref(-mut) into the `dyn ImageEncoder` even. (Edit: and a constructor from T: ImageEncoder if you feel like that...
I'm not completely certain we want the trait to be dyn-compatible. The main purpose is to facilitate writing bindings correctly for which the consumption is required. The use of those...
While I also see some use for `set_file_extension` as an interface, the format type need seems more immediate. There are a bunch of methods on the builtin `ImageFormat` which could...