From b497df817e01534c6a3aa9ec83db7ab008c07e6b Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Sun, 23 Feb 2025 16:24:59 +0100 Subject: [PATCH] Update Docker image to Rust 1.85.0 This makes cargo-deny runnable against projects with `edition = "2024"`, as only the latest Rust 1.85 understands the new edition without nightly feature flags. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69098b3..c9d6e32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.84.1-alpine3.20 +FROM rust:1.85.0-alpine3.20 ENV deny_version="0.17.0"