image-rs / jpeg-decoder

JPEG decoder written in Rust
Apache License 2.0
148 stars 87 forks source link

Remove byteorder dep #175

Closed okaneco closed 3 years ago

okaneco commented 3 years ago

With Rust 1.34 as the MSRV, from_be_bytes which was stabilized in 1.32 can be used. byteorder was only used for converting two Big Endian bytes into a u16.

This was previously attempted in #97 but the minimum Rust version was 1.28.