So I have written an app that uses a bit of Rust code, and while using "auto-py-to-exe" to turn it into an executable, it gives this error when I run it:
ModuleNotFoundError: No module named 'data_clean'
(data_clean is my rust module)
I used maturin for converting rust -> python and I ran 'maturin develop' on it successfully, it works as expected within my IDE.
I included the folder with all of my Rust code in it, I'm not sure why it's giving me a tough time.