Skip to content

Commit

Permalink
Pin rustls to v0.23.19 for MSRV
Browse files Browse the repository at this point in the history
.. we pin `rustls` for now to make CI pass, but mid-term we want to
figure out a new MSRV target to bump to.
  • Loading branch information
tnull committed Jan 3, 2025
1 parent 42f3955 commit 009257c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
cargo update -p tokio-util --precise "0.7.11" --verbose # tokio-util v0.7.12 requires rustc 1.70 or newer
cargo update -p idna_adapter --precise "1.1.0" --verbose # url 2.5.3 switched to idna 1.0.3 and ICU4X, which requires rustc 1.67 or newer. Here we opt to keep using unicode-rs by pinning idna_adapter as described here: https://docs.rs/crate/idna_adapter/1.2.0
cargo update -p indexmap --precise "2.5.0" --verbose # indexmap 2.6.0 upgraded to hashbrown 0.15, which unfortunately bumped their MSRV to rustc 1.65 with the 0.15.1 release
cargo update -p [email protected] --precise "0.23.19" --verbose # rustls 0.23.20 requires rustc v1.71.0 or newer.
- name: Set RUSTFLAGS to deny warnings
if: "matrix.toolchain == 'stable'"
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 009257c

Please sign in to comment.