Skip to content

Commit

Permalink
Fix build failing on MSRV
Browse files Browse the repository at this point in the history
`tokio` pulled a dependency on a version of `socket2` that had a too
high MSRV. Because the `tokio` `socket2` version dependency range starts
at a too new `socket2` version, it's necessary to downgrade `tokio` to
the last version that has a MSRV compatible with ours.
  • Loading branch information
AlexTMjugador authored and est31 committed Aug 24, 2023
1 parent 1411552 commit f22b096
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ogg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Downgrade dependencies to comply with MSRV
if: matrix.toolchain == '1.56.1'
run: cargo update -p tokio --precise 1.29.1
- name: Run no-default-features builds
if: matrix.toolchain != '1.56.1'
run: |
Expand Down

0 comments on commit f22b096

Please sign in to comment.