From 990d2330dbcec71bf72bdc116c390181f8d995cc Mon Sep 17 00:00:00 2001 From: huntc Date: Thu, 9 Dec 2021 10:40:03 +1100 Subject: Rust Analyzer documentation Intends to clarify how to make Embassy usable from within Visual Studio Code by assuming the presence of the Rust Analyzer. Note that IntelliJ does not support the Rust Analyzer, so an open question remains as to the whether this is a good move. If it turns out not to be a good move then we should still look at clarifying the use of a workspace file. --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.vscode') diff --git a/.vscode/settings.json b/.vscode/settings.json index a35be8054..b229f7eb6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,7 +16,8 @@ //"embassy-net/pool-16", ], "rust-analyzer.linkedProjects": [ - "examples/stm32f1/Cargo.toml" + // Declare for the target you wish to develop + "examples/nrf/Cargo.toml" ], "rust-analyzer.procMacro.enable": true, "rust-analyzer.cargo.runBuildScripts": true, -- cgit