From e1860c7b912b915a1c775dc7cc8672fd6cda7ab4 Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Fri, 1 Nov 2024 05:52:00 -0700 Subject: [PATCH] [chore] Revert pinning of pin-project-lite crate after upstream fix, and CI fix (#2264) --- .github/workflows/ci.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97c90efd2a..0acf176517 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,11 +73,11 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@nightly with: - toolchain: nightly-2024-05-01 + toolchain: nightly-2024-06-30 components: rustfmt - name: external-type-check run: | - cargo install cargo-check-external-types + cargo install cargo-check-external-types@0.1.13 cd ${{ matrix.example }} cargo check-external-types --config allowed-external-types.toml non-default-examples: diff --git a/Cargo.toml b/Cargo.toml index e08de8187d..a91ecbb4e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ hyper-util = "0.1" log = "0.4.21" once_cell = "1.13" ordered-float = "4.0" -pin-project-lite = "=0.2.14" # 0.2.15 is failing for cargo-check-external-types +pin-project-lite = "0.2" prost = "0.13" prost-build = "0.13" prost-types = "0.13"