From 54887af2579b86cb34950352ba47b3913c30a8e9 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Wed, 6 Dec 2023 00:18:14 +0000 Subject: [PATCH] build(devcontainer): upgrade rust compiler to v1.74 (current latest stable) 1. This was forced through the domino effect of webpki related security vulnerabilities that made it important for us to upgrade some dependencies which on the other hand did not work with the slightly older rust compiler that the dev container had had. Relevant links for the vulnerabilities (this is not a fix yet) - https://github.com/hyperledger/cacti/security/dependabot/762 - https://github.com/advisories/GHSA-8qv2-5vq6-g2g7 Skipping the CI because it's just a development environment change. [skip ci] Signed-off-by: Peter Somogyvari --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6d93f0c8e7..615a280a9c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -34,7 +34,7 @@ "version": "18.19.0" }, "ghcr.io/devcontainers/features/rust:1": { - "version": "1.63", + "version": "1.74", "profile": "complete" }, "ghcr.io/devcontainers-contrib/features/curl-apt-get:1": {},