Skip to content

Commit d2e7b0b

Browse files
cargo-rdme --locked
1 parent 37ede1c commit d2e7b0b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ lint-readmes:
4444
set -e
4545
echo "Checking READMEs are up-to-date..."
4646
if ! command -v cargo-rdme &> /dev/null; then
47-
cargo install cargo-rdme
47+
cargo install cargo-rdme --locked
4848
fi
4949
for toml in $(find program-libs sdk-libs -name '.cargo-rdme.toml' -type f); do
5050
crate_dir=$(dirname "$toml")

scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CARGO_BUILD_JOBS="$CLIPPY_JOBS" cargo clippy \
2828
# Regenerate READMEs with cargo-rdme
2929
echo "Regenerating READMEs..."
3030
if ! command -v cargo-rdme &> /dev/null; then
31-
cargo install cargo-rdme
31+
cargo install cargo-rdme --locked
3232
fi
3333
for toml in $(find program-libs sdk-libs -name '.cargo-rdme.toml' -type f); do
3434
crate_dir=$(dirname "$toml")

scripts/lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cargo clippy --workspace --all-features --all-targets -- -D warnings
2020
# Check that READMEs are up-to-date with cargo-rdme
2121
echo "Checking READMEs are up-to-date..."
2222
if ! command -v cargo-rdme &> /dev/null; then
23-
cargo install cargo-rdme
23+
cargo install cargo-rdme --locked
2424
fi
2525
for toml in $(find program-libs sdk-libs -name '.cargo-rdme.toml' -type f); do
2626
crate_dir=$(dirname "$toml")

0 commit comments

Comments
 (0)