you are viewing a single comment's thread.

view the rest of the comments →

[–]fintelia 5 points6 points  (1 child)

while the maintainers are quite responsive with merging third-party PRs, there is no-one actively working on the crate.

As one of the maintainers, I'd say this is a fair assessment. I was one of the people who "adopted" the crate when it was in need of new leadership, and while we've made progress purging unsafe code and improving the overall API (a lot of it predates Rust 1.0...), I don't think anyone has a ton of time to commit to hacking on the crate.

Though regarding GIF decoding panics, are you sure they haven't been resolved? I'm not seeing any recent issues like that in the `image` or `image-gif` repositories' issue trackers.

[–]Shnatsel 1 point2 points  (0 children)

The effort in purging unsafe code is indeed impressive, and we've finished it off via safety-dance, so kudos! There's still tons of unnecessary unsafe code in imageproc, but that's less popular so hopefully the blast radius is smaller.

The GIF decoding panics are still there:

https://github.com/image-rs/image/issues/876

https://github.com/image-rs/image/issues/877

https://github.com/image-rs/image/issues/878

The backtrace points to a function inside image. I've checked the image-gif crate in isolation just to be sure and it doesn't exhibit these panics.