Upgrade Rust toolchain: 1.86 -> 1.89

If you don't have toolchain installed and you use rustup run:

    $ rustup install --component rustfmt --component clippy 1.89

NOTE: It might be that you have 1.89.0 installed as stable toolchain, in
that case you still have to run the above command to install exactly
1.89.

Changes:
- Upgrade version of used toolchain in the following places:
  - .gitlab-ci.yml
  - Cargo.toml
  - clippy.toml
  - rust-toolchain.toml
This commit is contained in:
Zeke Fast
2025-08-23 15:11:48 +02:00
committed by Vincent Breitmoser
parent 82f48d3a4e
commit 3285f19d09
4 changed files with 4 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
[toolchain]
channel = "1.86"
channel = "1.89"
components = ["rustfmt", "clippy"]