From 72c094890b30c6ff647d9647d27825cea33541f1 Mon Sep 17 00:00:00 2001 From: Ludvig Liljenberg Date: Mon, 10 Feb 2025 15:58:41 -0800 Subject: [PATCH] add back minimal vscode settings file for rust-analyzer Signed-off-by: Ludvig Liljenberg --- .gitignore | 1 + .vscode/settings.json | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 11a19ba7b..841616ae4 100644 --- a/.gitignore +++ b/.gitignore @@ -448,6 +448,7 @@ $RECYCLE.BIN/ ## Visual Studio Code ## .vscode/* +!.vscode/settings.json /downloads diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..1ec1edf0e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "rust-analyzer.linkedProjects": [ + "Cargo.toml", + // guest crates for testing, not part of the workspace + "src/tests/rust_guests/simpleguest/Cargo.toml", + "src/tests/rust_guests/callbackguest/Cargo.toml" + ] +} \ No newline at end of file