From 81b4ba45964c86624b6bc87f646e3893d9f470e5 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Sat, 27 May 2023 16:59:19 +0200 Subject: [PATCH] Drop manual `update -p` stuff --- .github/workflows/ci.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43923126eb0..1bdfb7320a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -349,19 +349,6 @@ jobs: with: toolchain: ${{ env.rust_min }} - uses: Swatinem/rust-cache@v2 - # First compile just the main tokio crate with minrust and newest version - # of all dependencies, then pin once_cell and compile the rest of the - # crates with the pinned once_cell version. - # - # This is necessary because tokio-util transitively depends on once_cell, - # which is not compatible with the current minrust after the 1.15.0 - # release. - - name: "check -p tokio --all-features" - run: cargo check -p tokio --all-features - env: - RUSTFLAGS: "" # remove -Dwarnings - - name: "pin once_cell version" - run: cargo update -p once_cell --precise 1.14.0 - name: "check --workspace --all-features" run: cargo check --workspace --all-features env: