We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1f3e6f + e263971 commit eaf1dd0Copy full SHA for eaf1dd0
contrib/update-lock-files.sh
@@ -0,0 +1,11 @@
1
+#!/usr/bin/env bash
2
+#
3
+# Update the minimal/recent lock file
4
+
5
+set -euo pipefail
6
7
+for file in Cargo-minimal.lock Cargo-recent.lock; do
8
+ cp --force "$file" Cargo.lock
9
+ cargo check
10
+ cp --force Cargo.lock "$file"
11
+done
0 commit comments