Birk Tjelmeland
Birk Tjelmeland
I think I have come across the same bug. Here is an even smaller example, pressing the button instantly causes a `BorrowMutError` panic. ```rust use sycamore::prelude::*; fn main() { std::panic::set_hook(Box::new(console_error_panic_hook::hook));...
That sounds good. Just let me know when you are ready to move this forward and what work you want be to do. The way I personally see it is...
If you want to do this today you can use the `tiff` crate directly, I think it may take some time before this functionality is implemented into this crate.
You may be interested in https://github.com/image-rs/image-png/issues/116
Maybe be a little bit unrelated, but I was wondering if there there is interest in changing the `embassy-sync` `AtomicWaker` implementation from a `Mutex` based one to a lock-free one...
I would like to propose an idea of two image traits, one for random access to pixels and one for the simpler cases of iterating over pixels in row-major order....
I would like to propose something that looks more like the `Iterator` trait where most functions in the `Image` trait have signatures like `fn something(self, ...) -> Something`. This allows...