From 056d2cd57308ef922202bee982f2ae66b26faca0 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 24 Oct 2022 23:44:29 +0100 Subject: [PATCH] workaround ci msrv issue --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd839fb4..31ac582f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,6 +77,11 @@ jobs: uses: actions-rs/cargo@v1 with: { command: generate-lockfile } + - name: workaround MSRV issues + if: matrix.version != 'stable' + run: | + cargo update -p=time --precise=0.3.13 + - name: check lib if: > matrix.target.os != 'ubuntu-latest'