We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
idna_adapter
1 parent 463b1fc commit 38b6122Copy full SHA for 38b6122
.github/workflows/rust.yml
@@ -41,6 +41,10 @@ jobs:
41
- name: Check formatting on Rust ${{ matrix.toolchain }}
42
if: matrix.check-fmt
43
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
48
- name: Set RUSTFLAGS to deny warnings
49
if: "matrix.toolchain == 'stable'"
50
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"
0 commit comments