This is an automated email from the ASF dual-hosted git repository.
piotr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 9f0057685 chore(repo): bump Rust version to 1.93.0 (#2644)
9f0057685 is described below
commit 9f00576853a17309d55039ac24ac3ef8f2b2c2bc
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Fri Jan 30 13:49:21 2026 +0100
chore(repo): bump Rust version to 1.93.0 (#2644)
---
.github/actions/utils/docker-buildx/action.yml | 4 ++--
Dockerfile | 2 +-
bdd/java/Dockerfile | 2 +-
bdd/python/Dockerfile | 2 +-
bdd/rust/Dockerfile | 2 +-
core/ai/mcp/Dockerfile | 2 +-
core/bench/dashboard/server/Dockerfile | 2 +-
core/connectors/runtime/Dockerfile | 2 +-
core/server/Dockerfile | 2 +-
rust-toolchain.toml | 2 +-
10 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/.github/actions/utils/docker-buildx/action.yml
b/.github/actions/utils/docker-buildx/action.yml
index a140117e5..731c7b38f 100644
--- a/.github/actions/utils/docker-buildx/action.yml
+++ b/.github/actions/utils/docker-buildx/action.yml
@@ -304,8 +304,8 @@ runs:
echo "RUST_VERSION=$ver" >> "$GITHUB_ENV"
echo "Using toolchain: $ver"
else
- echo "RUST_VERSION=1.92" >> "$GITHUB_ENV"
- echo "No rust-toolchain.toml found; labeling as 1.92"
+ echo "RUST_VERSION=1.93" >> "$GITHUB_ENV"
+ echo "No rust-toolchain.toml found; labeling as 1.93"
fi
- name: Compose build args
diff --git a/Dockerfile b/Dockerfile
index e70448d2a..111b63739 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
FROM rust:${RUST_VERSION}-slim-bookworm AS builder
diff --git a/bdd/java/Dockerfile b/bdd/java/Dockerfile
index 4f55cbe18..d3f96a94f 100644
--- a/bdd/java/Dockerfile
+++ b/bdd/java/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
FROM rust:${RUST_VERSION}
FROM gradle:9.2-jdk17
diff --git a/bdd/python/Dockerfile b/bdd/python/Dockerfile
index 73fddc9e9..100f8a9fc 100644
--- a/bdd/python/Dockerfile
+++ b/bdd/python/Dockerfile
@@ -16,7 +16,7 @@
# under the License.
# syntax=docker/dockerfile:1
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
FROM rust:${RUST_VERSION}-slim-trixie
RUN apt-get update && \
diff --git a/bdd/rust/Dockerfile b/bdd/rust/Dockerfile
index 288fefd10..846f06af6 100644
--- a/bdd/rust/Dockerfile
+++ b/bdd/rust/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
FROM rust:${RUST_VERSION}
WORKDIR /app
diff --git a/core/ai/mcp/Dockerfile b/core/ai/mcp/Dockerfile
index e1b33e5d0..f413ad11a 100644
--- a/core/ai/mcp/Dockerfile
+++ b/core/ai/mcp/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
ARG ALPINE_VERSION=3.22
FROM --platform=$BUILDPLATFORM
lukemathwalker/cargo-chef:latest-rust-${RUST_VERSION}-alpine AS chef
diff --git a/core/bench/dashboard/server/Dockerfile
b/core/bench/dashboard/server/Dockerfile
index 990169518..31696de33 100644
--- a/core/bench/dashboard/server/Dockerfile
+++ b/core/bench/dashboard/server/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
# Build stage
FROM rust:${RUST_VERSION}-slim-trixie AS builder
diff --git a/core/connectors/runtime/Dockerfile
b/core/connectors/runtime/Dockerfile
index 666829907..f7de446ba 100644
--- a/core/connectors/runtime/Dockerfile
+++ b/core/connectors/runtime/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
ARG ALPINE_VERSION=3.22
FROM --platform=$BUILDPLATFORM
lukemathwalker/cargo-chef:latest-rust-${RUST_VERSION}-alpine AS chef
diff --git a/core/server/Dockerfile b/core/server/Dockerfile
index 5e4fd8e93..69fea6d3c 100644
--- a/core/server/Dockerfile
+++ b/core/server/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.92
+ARG RUST_VERSION=1.93
ARG ALPINE_VERSION=3.22
# ── from-source path ─────────────────────────────────────────────────────────
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index cf05182a0..e5e122ce3 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -16,6 +16,6 @@
# under the License.
[toolchain]
-channel = "1.92.0"
+channel = "1.93.0"
components = ["rustfmt", "clippy"]
profile = "default"