From 8fead280809d0027a7b951fa669f364dc26a5a9e Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 27 Apr 2023 13:23:11 +0000 Subject: [PATCH] Use Rust devcontainer --- .devcontainer/devcontainer.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..1cebf49 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,12 @@ +{ + "image": "mcr.microsoft.com/vscode/devcontainers/rust", + "forwardPorts": [], + "customizations": { + "vscode": { + "extensions": [ + "rust-lang.rust-analyzer", + "vadimcn.vscode-lldb" + ] + } + } +}