Installing RUST in Windows
1. When installing in windows Rust has a prerequisite : Rust Visual C++ prerequisites
2. To obtain these packages installed it is recommended to download the "Visual Studio installer".
(download vs_BuildTools.exe and run with selected option "")
3. Then install "".
Check the RUST installation
Check the installed RUST version by using "rustc --version" in a terminal window.
RUST's inbuild build management
CARGO is the RUST's build management tool.
check it's installation using \>cargo --version
CARGO can be used to build, run, test, create documentation and publish RUST libraries.
Preparing VSCode for RUST coding
We do require to install the extension "rust analyzer".
For debugging purposes install "CodeLLDB" extention.