From 3496f8a31c34f0aebc742864cf3f93de9ba997b3 Mon Sep 17 00:00:00 2001 From: David de Regt Date: Fri, 1 May 2026 10:48:02 -0700 Subject: [PATCH] Add support for Rust 1.94/1.95 --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a9aa988f..7993fb28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -225,7 +225,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ### RUST ### -ARG RUST_VERSIONS="1.93.0 1.92.0 1.91.1 1.90.0 1.89.0 1.88.0 1.87.0 1.86.0 1.85.1 1.84.1 1.83.0" +ARG RUST_VERSIONS="1.95.0 1.94.0 1.93.0 1.92.0 1.91.1 1.90.0 1.89.0 1.88.0 1.87.0 1.86.0 1.85.1 1.84.1 1.83.0" RUN --mount=type=cache,target=/root/.cargo/registry \ --mount=type=cache,target=/root/.cargo/git \ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain none \ diff --git a/README.md b/README.md index 8561e863..076134e3 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ The following environment variables can be set to configure runtime installation | -------------------------- | -------------------------- | ------------------------------------------------ | -------------------------------------------------------------------- | | `CODEX_ENV_PYTHON_VERSION` | Python version to install | `3.10`, `3.11.12`, `3.12`, `3.13`, `3.14.0` | `pyenv`, `poetry`, `uv`, `ruff`, `black`, `mypy`, `pyright`, `isort` | | `CODEX_ENV_NODE_VERSION` | Node.js version to install | `18`, `20`, `22` | `corepack`, `yarn`, `pnpm`, `npm` | -| `CODEX_ENV_RUST_VERSION` | Rust version to install | `1.83.0`, `1.84.1`, `1.85.1`, `1.86.0`, `1.87.0`, `1.88.0`, `1.89.0`, `1.90`, `1.91.1`, `1.92.0`, `1.93.0` | | +| `CODEX_ENV_RUST_VERSION` | Rust version to install | `1.83.0`, `1.84.1`, `1.85.1`, `1.86.0`, `1.87.0`, `1.88.0`, `1.89.0`, `1.90`, `1.91.1`, `1.92.0`, `1.93.0`, `1.94.0`, `1.95.0` | | | `CODEX_ENV_GO_VERSION` | Go version to install | `1.22.12`, `1.23.8`, `1.24.3`, `1.25.1` | | | `CODEX_ENV_SWIFT_VERSION` | Swift version to install | `5.10`, `6.1`, `6.2` | | | `CODEX_ENV_RUBY_VERSION` | Ruby version to install | `3.2.3`, `3.3.8`, `3.4.4` | |