build(deps): bump Rust version to 1.90 (#10380)

One of the more quiet Rust releases with no new clippy lints that would
require code updates.
This commit is contained in:
Thomas Eizinger
2025-09-20 04:28:03 +00:00
committed by GitHub
parent 9c8101a3ee
commit e20929ad73
3 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ COPY ${PACKAGE} .
FROM runtime AS dev
ARG PACKAGE
ARG RUST_VERSION="1.89.0" # Keep in sync with `rust-toolchain.toml`
ARG RUST_VERSION="1.90.0" # Keep in sync with `rust-toolchain.toml`
WORKDIR /app

View File

@@ -1,6 +1,6 @@
#![cfg(not(windows))] // For some reason, Windows doesn't like this test.
#![allow(clippy::unwrap_used)]
#[cfg(not(windows))] // For some reason, Windows doesn't like this test.
#[tokio::test]
async fn client_does_not_pipeline_messages() {
use std::{str::FromStr, sync::Arc, time::Duration};

View File

@@ -1,4 +1,4 @@
[toolchain]
channel = "1.89.0" # Keep in sync with `Dockerfile`
channel = "1.90.0" # Keep in sync with `Dockerfile`
components = ["rust-src", "rust-analyzer", "clippy"]
targets = ["x86_64-unknown-linux-musl"]