Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 0 additions & 42 deletions bitcoind/contrib/extra_tests.sh

This file was deleted.

5 changes: 0 additions & 5 deletions contrib/crates.sh

This file was deleted.

30 changes: 0 additions & 30 deletions contrib/update-lock-files.sh

This file was deleted.

20 changes: 19 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,22 @@ docsrs *flags:

# Update the recent and minimal lock files.
update-lock-files:
contrib/update-lock-files.sh
just update-lock-file Cargo-minimal.lock
just update-lock-file Cargo-recent.lock

update-lock-file file:
cp --force {{file}} Cargo.lock
for crate in {{ALL_FEATURE_CRATES}}; do \
cargo check \
--manifest-path "$REPO_DIR/$crate/Cargo.toml" \
--all-features \
|| exit 1; \
done
for crate in {{SPECIFIC_FEATURES_CRATES}}; do \
cargo check \
--manifest-path "$REPO_DIR/$crate/Cargo.toml" \
--no-default-features \
--features="{{SPECIFIC_FEATURES}}" \
|| exit 1; \
done
cp --force Cargo.lock {{file}}
Loading