Skip to content

Commit 8f3eb32

Browse files
committed
chore: fix justfile for msrv
1 parent ddd16ec commit 8f3eb32

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

justfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ fmt:
1212
# Downgrade dependencies necessary to run MSRV checks/tests.
1313
[private]
1414
downgrade-for-msrv:
15-
cargo {{ toolchain }} update -p=divan --precise=0.1.15 # next ver: 1.80.0
15+
cargo {{ toolchain }} update -p=rayon --precise=1.10.0 # next ver: 1.80.0
16+
cargo {{ toolchain }} update -p=rayon-core --precise=1.12.1 # next ver: 1.80.0
1617
cargo {{ toolchain }} update -p=half --precise=2.4.1 # next ver: 1.81.0
1718
cargo {{ toolchain }} update -p=idna_adapter --precise=1.2.0 # next ver: 1.82.0
1819
cargo {{ toolchain }} update -p=litemap --precise=0.7.4 # next ver: 1.81.0
@@ -50,8 +51,7 @@ clippy:
5051
cargo {{ toolchain }} clippy --workspace --all-targets {{ all_crate_features }}
5152

5253
# Run Clippy over workspace using MSRV.
53-
clippy-msrv:
54-
@just toolchain={{ msrv_rustup }} downgrade-for-msrv
54+
clippy-msrv: downgrade-for-msrv
5555
@just toolchain={{ msrv_rustup }} clippy
5656

5757
# Test workspace code.
@@ -62,8 +62,7 @@ test:
6262
cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-web-codegen --exclude=actix-multipart-derive {{ all_crate_features }} --filter-expr="not test(test_reading_deflate_encoding_large_random_rustls)"
6363

6464
# Test workspace using MSRV.
65-
test-msrv:
66-
@just toolchain={{ msrv_rustup }} downgrade-for-msrv
65+
test-msrv: downgrade-for-msrv
6766
@just toolchain={{ msrv_rustup }} test
6867

6968
# Test workspace docs.

0 commit comments

Comments
 (0)