image-rs / image

Encoding and decoding images in Rust
Apache License 2.0
4.93k stars 610 forks source link

Add deprecated re-export of ImageReader as Reader #2252

Closed ripytide closed 4 months ago

ripytide commented 4 months ago

As requested in #2243, some module renaming was required to ensure the current io can become private while still re-exporting the deprecated Reader type synonym from a top-level module called io.

fintelia commented 4 months ago

Looking more closely, io::Limits and io::LimitSupport will also need to be re-exported to avoid it being a breaking change

ripytide commented 4 months ago

I've added re-exports for them too.

fintelia commented 4 months ago

Thanks!