From 869acf15ae02292494a83006f01f5980aa957944 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Wed, 5 Mar 2025 18:16:08 +0100 Subject: [PATCH] try upgrading rustup agian --- src/tools/rustup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rustup.rs b/src/tools/rustup.rs index 5264927..4acb17e 100644 --- a/src/tools/rustup.rs +++ b/src/tools/rustup.rs @@ -11,7 +11,7 @@ use tempfile::tempdir; // we're using an old version of rustup, since rustup 1.28 is broken for rustwide for now. // We'll try to either fix rustup, or adapt rustwide to fix this, until then, we'll use this version. // see https://github.com/rust-lang/rustup/issues/4224 -static RUSTUP_VERSION: &str = "1.27.1"; +static RUSTUP_VERSION: &str = "1.28.1"; pub(crate) struct Rustup;