From b5e643f1228b3a4d543142519305f67aa8ffc2f0 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 16 Sep 2024 14:08:13 -0400 Subject: [PATCH] chore(ci): pin tokio-util in MSRV CI job --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 76c556d..3a5d9fa 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -68,10 +68,11 @@ jobs: uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} - - name: Make sure tokio 1.38.1 is used for MSRV + - name: Pin some dependencies for MSRV run: | cargo update cargo update --package tokio --precise 1.38.1 + cargo update --package tokio-util --precise 0.7.11 - run: cargo check --features full miri: