Skip to content

Commit 38b6122

Browse files
committed
Re-pin idna_adapter to for MSRV builds
.. we previously dropped the pin when moving MSRV to 1.85, but it seems that is not sufficient anymore..
1 parent 463b1fc commit 38b6122

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
- name: Check formatting on Rust ${{ matrix.toolchain }}
4242
if: matrix.check-fmt
4343
run: rustup component add rustfmt && cargo fmt --all -- --check
44+
- name: Pin packages to allow for MSRV
45+
if: matrix.msrv
46+
run: |
47+
cargo update -p idna_adapter --precise "1.2.0" --verbose # idna_adapter 1.2.1 uses ICU4X 2.2.0, requiring 1.86 and newer
4448
- name: Set RUSTFLAGS to deny warnings
4549
if: "matrix.toolchain == 'stable'"
4650
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)