From 3244c1fdc787d1fb3115d974117a417ad762d0d7 Mon Sep 17 00:00:00 2001 From: Tomas Tauber <2410580+tomtau@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:54:51 +0800 Subject: [PATCH] bump toolchain to be able to install cargo-msrv --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee630101..bb861dcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: with: kind: msrv tools: cargo-msrv - toolchain: 1.67.0 # needed for cargo-msrv due to time-macros v0.2.14 + toolchain: 1.70.0 # needed for cargo-msrv due to cargo-platform v0.1.6 - name: Check msrv shell: sh run: for crate in "derive" "generator" "grammars" "meta" "pest" "vm"; do cd "$crate" && cargo msrv verify && cd ..; done