From 521a358a4d9bf2836c5886b33efb564e63da03f5 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Mon, 10 Jun 2024 14:39:22 +0200 Subject: [PATCH] Set 1.75 as minimal Rust version (#11821) ## Summary Salsa requires https://github.com/rust-lang/rust/issues/91611 which stabalized with [1.75](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html) 1.75 doesn't change the supported platforms. So I think this upgrade is fine in a minor. ## Test Plan `cargo build` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2193689607f138..09282926b3073c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [workspace.package] edition = "2021" -rust-version = "1.74" +rust-version = "1.75" homepage = "https://docs.astral.sh/ruff" documentation = "https://docs.astral.sh/ruff" repository = "https://github.com/astral-sh/ruff"