From 17dfbf8bb67b09c92358fe4c95ccb5c71e9a60c2 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Mon, 22 Nov 2021 21:47:50 +0100 Subject: [PATCH] Bump MSRV to 1.51 to fix build with latest plist release A recent release of plist bumped MSRV to 1.51 (see https://github.com/ebarnard/rust-plist/pull/72 and discussions theirin), so we need to do that as well to fix this build error in CI: ``` error: failed to parse manifest at `/home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.5/Cargo.toml` Caused by: feature `resolver` is required this Cargo does not support nightly features, but if you switch to nightly channel you can add `cargo-features = ["resolver"]` to enable this feature ``` --- .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 857199b3..4782f744 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,7 +8,7 @@ on: branches: [ master ] env: - MIN_SUPPORTED_RUST_VERSION: "1.46" + MIN_SUPPORTED_RUST_VERSION: "1.51" CARGO_TERM_COLOR: always jobs: