I am trying to package an application I'm making for nix. Nix thanks to reproducible builds requires Cargo.lock to be tracked by git.
The issue is the application is in a workspace with two libraries which as far as my research shows should not have a tracked lockfile.
I do not want to spin the libraries into separate crates outside the workspace since I dont want to deal with keeping their dependencies matched. But if its needed its needed.
What would be the best option forward here.