Use cargo update rather than cargo generate-lockfile

This commit is contained in:
GBA bot 2022-02-24 21:56:29 +00:00 committed by Gwilym Kuiper
parent b1b860edaf
commit 52a0f87e3c

View file

@ -2,7 +2,7 @@
function update_lockfiles() {
for toml in **/Cargo.toml; do
(cd "$(dirname "$toml")" && cargo generate-lockfile)
(cd "$(dirname "$toml")" && cargo update)
done
}