From 976a5e03669b391fd2a465cd24b682a302a3e23e Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sat, 16 Dec 2023 14:14:28 -0700 Subject: [PATCH 1/2] Enable unstable features when editing in VS Code This improves the editing experience by 'enabling' all the code that otherwise is turned off because of the `unstable` flag. --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..5c424e621 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "rust-analyzer.cargo.features": ["unstable"] +} \ No newline at end of file From 1804647112977c0d08a1ac66ead51e1b994589a8 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Thu, 4 Jan 2024 11:44:17 -0700 Subject: [PATCH 2/2] Update .vscode/settings.json Co-authored-by: str4d --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 5c424e621..7b2b22c3a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,3 @@ { - "rust-analyzer.cargo.features": ["unstable"] + "rust-analyzer.cargo.features": "all" } \ No newline at end of file