From 2b45e9331e5eece0f1cea01a9378f4296c1f1d60 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 4 Nov 2024 18:23:59 -0800 Subject: [PATCH] Raise minimum version for syn-codegen crate to Rust 1.65 Required by hashbrown 0.15.1. error: package `hashbrown v0.15.1` cannot be built because it requires rustc 1.65.0 or newer, while the currently active rustc version is 1.63.0 --- .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 95c6d6fda..009613cbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [stable, beta, 1.63.0, 1.61.0] + rust: [stable, beta, 1.65.0, 1.61.0] include: - rust: nightly components: rustc-dev