From 7cce517f53fd60d40bd6ef87a0e51f88a306e901 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 4 Nov 2024 18:19:58 -0800 Subject: [PATCH] Raise minimum version for preserve_order feature 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.64.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 72f1c9197..c41b2f6dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [beta, 1.64.0, 1.56.1] + rust: [beta, 1.65.0, 1.56.1] os: [ubuntu] include: - rust: stable