From 899c90cf8a5243911987a6d2fa5f21e0cfbbe7dc Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Sun, 29 May 2022 13:43:02 -0400 Subject: YJIT: Relax minimum Rust version requirement to 1.58.1 We want to make it convenient for people to build YJIT and Rust version 1.58.1 or above is available on Ubuntu Jammy, Debian testing, and Fedora 36 through the usual package manager on those systems. This saves the need to install `rustup` for some people. Our code is already 1.58.1 compatible so this commit simply tweaks CI to make sure that we keep supporting that version. We still test against the latest Rust version in `--enable-yjit=dev` builds through the Rust version available in GitHub's CI image. Rust versions older than 1.58.1 might build YJIT today, but we might make incompatible changes in the future. Co-authored-by: Maxime Chevalier-Boisvert --- yjit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yjit') diff --git a/yjit/Cargo.toml b/yjit/Cargo.toml index 8969f897ad..a5208049cb 100644 --- a/yjit/Cargo.toml +++ b/yjit/Cargo.toml @@ -6,7 +6,7 @@ name = "yjit" version = "0.1.0" # YJIT version edition = "2021" # Rust 2021 edition to compile with -rust-version = "1.60.0" # Minimally supported rust version +rust-version = "1.58.1" # Minimally supported rust version publish = false # Don't publish to crates.io [lib] -- cgit v1.2.3