QRcode encoder/decoder works with Rust.
This work is derived from ZXing.
When I seek a QRcode decoder written in Rust, I found the qrcode-rust. It is good library but has only encoder. Finally, I could not find a QRcode decoder written in Rust.
So, I need to write QRcode decoder. I found the most popular QRcode decoder library written in Javascript (based on GitHub star count), jsqrcode, is port of ZXing. It is good idea for me to follow the same idea what the jsqrcode have already did. So, I decided to try to port the ZXing to Rust.