Hello, I am building my application with cargo tauri build on a windows box. I do all the dev on linux. Seems like something is touching the Cargo.toml file in one of my crates in such a way that git now reports the repo as dirty index. I am using the git_version crate to embed the hash in a version string in the application.
git diff only reports line endings will be replaced, with no visible diff. I have messed with the autoclrf settings in git to no avail, both true and auto.
I know that version information will be read from from cargo.toml file, but I don't understand how the file would be modified in anyway.
Anyone else come across this issue?