From df933c53ca9572f5ad2a99ab70363b2d37b2a7eb Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Wed, 21 Sep 2022 09:56:14 +0200 Subject: [PATCH] Pin once_cell to fix MSRV build. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ffc80194b0..78e5f5582a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -185,12 +185,14 @@ jobs: PROJECTS=("." "examples/decorator" "examples/maturin-starter" "examples/setuptools-rust-starter" "examples/word-count") for PROJ in ${PROJECTS[@]}; do cargo update --manifest-path "$PROJ/Cargo.toml" -p parking_lot --precise 0.11.0 + cargo update --manifest-path "$PROJ/Cargo.toml" -p once_cell --precise 1.14.0 done cargo update -p plotters --precise 0.3.1 cargo update -p plotters-svg --precise 0.3.1 cargo update -p plotters-backend --precise 0.3.2 cargo update -p bumpalo --precise 3.10.0 cargo update -p itertools --precise 0.10.3 + cargo update -p once_cell --precise 1.14.0 - name: Build docs run: cargo doc --no-deps --no-default-features --features "full ${{ matrix.extra_features }}"