Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: 'stable'
toolchain: "stable"

- name: Check
run: cargo test --features http3
Expand Down Expand Up @@ -277,6 +277,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install rust (${{ steps.metadata.outputs.msrv }})
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly

- name: Get MSRV package metadata
id: metadata
run: cargo metadata --no-deps --format-version 1 | jq -r '"msrv=" + .packages[0].rust_version' >> $GITHUB_OUTPUT
Expand All @@ -288,14 +293,7 @@ jobs:

- name: Fix log and tokio versions
run: |
cargo update
cargo update -p log --precise 0.4.18
cargo update -p tokio --precise 1.29.1
cargo update -p tokio-util --precise 0.7.11
cargo update -p idna_adapter --precise 1.1.0
cargo update -p [email protected] --precise 0.15.0
cargo update -p native-tls --precise 0.2.13
cargo update -p once_cell --precise 1.20.3
cargo +nightly generate-lockfile -Z minimal-versions

- uses: Swatinem/rust-cache@v2

Expand Down
Loading