This is an automated email from the ASF dual-hosted git repository.
hgruszecki 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 dbbbba5a7 chore: bump Rust to 1.94 (#2900)
dbbbba5a7 is described below
commit dbbbba5a7bae249fce89e94b14517b178f12c6cf
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Mon Mar 9 22:06:44 2026 +0100
chore: bump Rust to 1.94 (#2900)
---
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 +-
9 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 111b63739..1b73912ee 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-ARG RUST_VERSION=1.93
+ARG RUST_VERSION=1.94
FROM rust:${RUST_VERSION}-slim-bookworm AS builder
diff --git a/bdd/java/Dockerfile b/bdd/java/Dockerfile
index 4a135ef53..31e7ab78d 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.93
+ARG RUST_VERSION=1.94
FROM rust:${RUST_VERSION}
FROM gradle:9.3.1-jdk17
diff --git a/bdd/python/Dockerfile b/bdd/python/Dockerfile
index f5cc9a989..230aa60fb 100644
--- a/bdd/python/Dockerfile
+++ b/bdd/python/Dockerfile
@@ -16,7 +16,7 @@
# under the License.
# syntax=docker/dockerfile:1
-ARG RUST_VERSION=1.93
+ARG RUST_VERSION=1.94
FROM rust:${RUST_VERSION}-slim-trixie
RUN apt-get update && \
diff --git a/bdd/rust/Dockerfile b/bdd/rust/Dockerfile
index 846f06af6..8314bd066 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.93
+ARG RUST_VERSION=1.94
FROM rust:${RUST_VERSION}
WORKDIR /app
diff --git a/core/ai/mcp/Dockerfile b/core/ai/mcp/Dockerfile
index d57277ff4..4aa435bdd 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.93
+ARG RUST_VERSION=1.94
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 31696de33..e979a7f28 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.93
+ARG RUST_VERSION=1.94
# Build stage
FROM rust:${RUST_VERSION}-slim-trixie AS builder
diff --git a/core/connectors/runtime/Dockerfile
b/core/connectors/runtime/Dockerfile
index 4c8034daf..269cfc4bf 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.93
+ARG RUST_VERSION=1.94
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 b41a1f190..469bca6ec 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.93
+ARG RUST_VERSION=1.94
ARG ALPINE_VERSION=3.22
# ── from-source path ─────────────────────────────────────────────────────────
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index e5e122ce3..3557f622f 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -16,6 +16,6 @@
# under the License.
[toolchain]
-channel = "1.93.0"
+channel = "1.94.0"
components = ["rustfmt", "clippy"]
profile = "default"