From 85e76a468fcf90440fc9b1a462d83ee6fb8c17a4 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Fri, 20 Feb 2026 16:32:06 +0200 Subject: [PATCH] fix: Use Rust 1.85 for edition2024 crate support Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9045ccc..9584230 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Stage 1: Build patched Rust FFI with HKDF support for Element Call E2EE # Fork: onestacked/livekit-rust-sdks branch EC-compat-changes # PR: https://github.com/livekit/rust-sdks/pull/904 -FROM rust:1.82-slim-bookworm AS rust-build +FROM rust:1.85-slim-bookworm AS rust-build RUN apt-get update && apt-get install -y --no-install-recommends \ git cmake g++ libssl-dev pkg-config protobuf-compiler \ && rm -rf /var/lib/apt/lists/*