From e20929ad732fc2f4206316ca24a35f36841b46df Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sat, 20 Sep 2025 04:28:03 +0000 Subject: [PATCH] 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. --- rust/Dockerfile | 2 +- rust/connlib/phoenix-channel/tests/lib.rs | 2 +- rust/rust-toolchain.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/Dockerfile b/rust/Dockerfile index b2e6b5a18..704d6c2ad 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -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 diff --git a/rust/connlib/phoenix-channel/tests/lib.rs b/rust/connlib/phoenix-channel/tests/lib.rs index 5a9c0c350..846903ba0 100644 --- a/rust/connlib/phoenix-channel/tests/lib.rs +++ b/rust/connlib/phoenix-channel/tests/lib.rs @@ -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}; diff --git a/rust/rust-toolchain.toml b/rust/rust-toolchain.toml index e28479a5d..8c6b3feae 100644 --- a/rust/rust-toolchain.toml +++ b/rust/rust-toolchain.toml @@ -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"]