Skip to content

Commit ebdbd9a

Browse files
committed
chore(ci): fix pinning for 1.75.0 MSRV
1 parent 7138749 commit ebdbd9a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

ci/pin-msrv.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -euo pipefail
55

66
# Pin dependencies for MSRV (1.75.0)
77
cargo update -p minreq --precise "2.13.2"
8+
cargo update -p native-tls --precise "0.2.11"
89
cargo update -p idna_adapter --precise "1.2.0"
9-
cargo update -p native-tls --precise "0.2.13"
10-
cargo update -p zerofrom --precise "0.1.5"
1110
cargo update -p litemap --precise "0.7.4"
11+
cargo update -p zerofrom --precise "0.1.5"

justfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ fmt:
2828

2929
# Build and test using the MSRV toolchain (1.75.0)
3030
msrv:
31-
bash ci/pin-msrv.sh
32-
cargo +1.75.0 build --all-features
33-
cargo +1.75.0 test --all-features -- --test-threads=1
31+
rm -rf Cargo.lock
32+
bash ci/pin-msrv.sh
33+
cargo +1.75.0 build --all-features
34+
cargo +1.75.0 test --all-features -- --test-threads=1
3435

3536
# Run pre-push suite: format, check, and test
36-
pre-push: fmt check test
37+
pre-push: fmt check test msrv
3738

3839
# Run all tests on the workspace with all features
3940
test:

0 commit comments

Comments
 (0)