thomasgruebl / rusty-tesseract

A Rust wrapper for Google Tesseract
MIT License
127 stars 16 forks source link

Fixed issues when using rusty-tesseract from crates.io #4

Closed Icekey closed 1 year ago

Icekey commented 1 year ago

I tried to use this crate from crates.io in one of my project but i got a "unresolved import rusty_tesseract" error: rusty_tesseract_unresolved

In this PR i changed the name of the modul "rusty_tesseract" to "tesseract" to avoid name conflicts with the name of the project root. I added a re-export for "ndarray" and made the moduls "error" and "tesseract" public. I also fixed some warnings from the rust-compiler.

thomasgruebl commented 1 year ago

Looks great, thanks!

Icekey commented 1 year ago

Thank you for the quick merge 👍