From 25be7a35d421b0cc16e016a9f605499f6349082a Mon Sep 17 00:00:00 2001 From: Thibaut Date: Wed, 3 May 2023 09:42:26 +0200 Subject: [PATCH] Replace deprecated devcontainer features (#106) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While starting the dev container, the following message is displayed: ``` [3285 ms] * Processing feature: rust [3285 ms] (!) WARNING: Using the deprecated ‘rust’ Feature. See https://github.com/devcontainers/features/tree/main/src/rust#example-usage for the updated Feature. ``` --- .devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer.json b/.devcontainer.json index 1c53f02..9fda616 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -37,6 +37,6 @@ }, "remoteUser": "vscode", "features": { - "rust": "latest" + "ghcr.io/devcontainers/features/rust:1": {} } -} \ No newline at end of file +}