Setting up Rust development environment using VSCode on a Mac
Completion and highlighting While on Linux VSCode with the Rust plugin seems to work more or less out of the box, on a Mac I needed to spend some time configuring it.
First things first though, let’s start by installing Rust version manager, rustup.
curl https://sh.rustup.rs -sSf | sh We will be using nightly version of rust as to have one version that can compile all of our tools. This is mostly due to clippy requiring a nightly compiler.
[Read More]