Skip to content

Commit f105cbc

Browse files
authored
Merge pull request #180 from benthecarman/msrv-fix
Pin idna_adapter to for MSRV builds
2 parents cbffa3a + 9c4bf15 commit f105cbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
run: rustup component add rustfmt && cargo fmt --all -- --check
4242
- name: Pin packages to allow for MSRV
4343
if: matrix.msrv
44-
run: | # None needed yet
45-
echo "No packages need pinning for MSRV ${{ matrix.toolchain }}"
44+
run: |
45+
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
4646
- name: Build on Rust ${{ matrix.toolchain }}
4747
run: cargo build --verbose --color always
4848
- name: Check clippy if on msrv

0 commit comments

Comments
 (0)