From 0e692120a0ea3b40dc6352700da6469f2fb89065 Mon Sep 17 00:00:00 2001 From: Andrew Novoselac Date: Mon, 18 Mar 2024 17:21:31 -0400 Subject: [PATCH] Add rust as dependency of the feature YJIT is now enabled by default, so we should make Rust is always present when using the feature. --- features/ruby/devcontainer-feature.json | 3 +++ images/ruby/.devcontainer/devcontainer.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/features/ruby/devcontainer-feature.json b/features/ruby/devcontainer-feature.json index 65e14d8..e2cb860 100644 --- a/features/ruby/devcontainer-feature.json +++ b/features/ruby/devcontainer-feature.json @@ -16,6 +16,9 @@ "installsAfter": [ "ghcr.io/devcontainers/features/common-utils" ], + "dependsOn": { + "ghcr.io/devcontainers/features/rust": {} + }, "options": { "version": { "type": "string", diff --git a/images/ruby/.devcontainer/devcontainer.json b/images/ruby/.devcontainer/devcontainer.json index 18f2cf0..4caa63e 100644 --- a/images/ruby/.devcontainer/devcontainer.json +++ b/images/ruby/.devcontainer/devcontainer.json @@ -21,4 +21,4 @@ }, // Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "vscode" -} \ No newline at end of file +}