Skip to content

Commit

Permalink
CI: Fix the CI for the MSRV 1.65
Browse files Browse the repository at this point in the history
Pin `url` to `v2.5.2` when testing the MSRV.
  • Loading branch information
tatsuya6502 committed Dec 8, 2024
1 parent 120f706 commit dc22bf5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .ci_extras/pin-crate-vers-kani.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -eux

# Pin some dependencies to specific versions for the nightly toolchain
# used by Kani verifier.
# cargo update -p crate-name --precise x.y.z
# cargo update crate-name --precise x.y.z
11 changes: 6 additions & 5 deletions .ci_extras/pin-crate-vers-msrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
set -eux

# Pin some dependencies to specific versions for the MSRV.
# cargo update -p <crate> --precise <version>
cargo update -p actix-rt --precise 2.9.0
cargo update -p cc --precise 1.0.105
cargo update -p tokio-util --precise 0.7.11
cargo update -p tokio --precise 1.38.1
# cargo update <crate> --precise <version>
cargo update actix-rt --precise 2.9.0
cargo update cc --precise 1.0.105
cargo update tokio-util --precise 0.7.11
cargo update tokio --precise 1.38.1
cargo update url --precise 2.5.2
3 changes: 2 additions & 1 deletion .ci_extras/pin-crate-vers-nightly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
set -eux

# Pin some dependencies to specific versions for the nightly toolchain.
# cargo update <crate> --precise <version>
# https://github.com/tkaitchuck/aHash/issues/200
cargo update -p ahash --precise 0.8.7
cargo update ahash --precise 0.8.7

0 comments on commit dc22bf5

Please sign in to comment.