From 4b001669c99df9afb2d9d376ca93ec1995d77fa1 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Wed, 7 Jan 2026 16:11:18 -0600 Subject: [PATCH 1/2] fix: use rust 1.89.0 for xelis it works for frostdart etc as well --- scripts/rust_version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rust_version.sh b/scripts/rust_version.sh index 6d8157d87..eb302cfc7 100755 --- a/scripts/rust_version.sh +++ b/scripts/rust_version.sh @@ -3,9 +3,9 @@ set_rust_to_everything_else() { if rustup toolchain list | grep -q "1.85.1"; then - rustup default 1.85.1 + rustup default 1.89.0 else - echo "Rust version 1.85.1 is not installed. Please install it using 'rustup install 1.85.1'." >&2 + echo "Rust version 1.89.0 is not installed. Please install it using 'rustup install 1.89.0'." >&2 exit 1 fi } From 0d8738456f51aa9a4e73351275a8993d3d1ff623 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Wed, 7 Jan 2026 16:13:28 -0600 Subject: [PATCH 2/2] docs: update rust versions re: xelis --- docs/building.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/building.md b/docs/building.md index bd2bffe96..800a003f9 100644 --- a/docs/building.md +++ b/docs/building.md @@ -62,8 +62,8 @@ Install [Rust](https://www.rust-lang.org/tools/install) via [rustup.rs](https:// ``` curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh source ~/.bashrc -rustup install 1.85.1 1.81.0 -rustup default 1.85.1 +rustup install 1.89.0 1.81.0 +rustup default 1.89.0 cargo install cargo-ndk ``` @@ -209,12 +209,12 @@ brew install brotli cairo coreutils gdbm gettext glib gmp libevent libidn2 libng ``` -Download and install [Rust](https://www.rust-lang.org/tools/install). [Rustup](https://rustup.rs/) is recommended for Rust setup. Use `rustc` to confirm successful installation. Install toolchains 1.81.0, 1.85.1, and 1.86.0, as well as `cbindgen` and `cargo-lipo` too. You will also have to add the platform target(s) `aarch64-apple-ios` and/or `aarch64-apple-darwin`. You can use the command(s): +Download and install [Rust](https://www.rust-lang.org/tools/install). [Rustup](https://rustup.rs/) is recommended for Rust setup. Use `rustc` to confirm successful installation. Install toolchains 1.81.0 and 1.89.0 as well as `cbindgen` and `cargo-lipo` too. You will also have to add the platform target(s) `aarch64-apple-ios` and/or `aarch64-apple-darwin`. You can use the command(s): ``` curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh source ~/.bashrc -rustup install 1.86.0 1.85.1 1.81.0 -rustup default 1.85.1 +rustup install 1.89.0 1.81.0 +rustup default 1.89.0 cargo install cargo-ndk cargo install cbindgen cargo-lipo rustup target add aarch64-apple-ios aarch64-apple-darwin @@ -294,8 +294,8 @@ Install Flutter 3.38.5 on your Windows host (not in WSL2) by [following their gu ### Rust Install [Rust](https://www.rust-lang.org/tools/install) on the Windows host (not in WSL2). Download the installer from [rustup.rs](https://rustup.rs), make sure it works on the commandline (you may need to open a new terminal), and install the following versions: ``` -rustup install 1.86.0 1.85.1 1.81.0 -rustup default 1.85.1 +rustup install 1.89.0 1.81.0 +rustup default 1.89.0 cargo install cargo-ndk ```