image/default should allow to run examples using imageproc::image, otherwise a panic/error may occur (png/jpeg decode, etc).
It seems to me that users will expect this from our re-export.
If they don't need the default image features, then they will do imageproc = { ..., default-features = false } which will lead to image = { ..., default-features = false } internally.
Thanks! Let me know if there’s anything you think needs to go in before the next release, otherwise I’ll just ship what we’ve got around 12 hours from now.
Continuing our discussion about the re-export of the
image
https://github.com/image-rs/imageproc/pull/557.image/default
should allow to run examples usingimageproc::image
, otherwise a panic/error may occur (png/jpeg decode, etc). It seems to me that users will expect this from our re-export. If they don't need the defaultimage
features, then they will doimageproc = { ..., default-features = false }
which will lead toimage = { ..., default-features = false }
internally.The
msrv
is increased, see https://github.com/image-rs/image/issues/2168