I'm confused about the behavior of cargo build
when the lock file changes between builds:
- Run
cargo clean
- Run
cargo build
- Change the lock file to a previous version using git
- Now rerun
cargo build
In my case, despite the Cargo.lock
having changed between the two builds, cargo
doesn't rebuild. It immediately returns successfully. Why is that? What am I doing wrong or is this a bug?
The changes are only in the dependencies, not in the main binaries that are output.
I searched the Rust forum and issues and couldn't find this case.
You have to run with
--locked
flag, from the docs: