Rust
Rust Installation on Windows
Install Rust using rustup-init.exe https://www.rust-lang.org/tools/install
Add “C:\Users\<user-name>\.cargo\bin” to your %PATH% environment variable (If not automatically done)InstallBuild Tools for Visual Studio 2017(Select only Visual C++ build tools)Install SublimeText 3
Start SublimeText3, Ctrl+Shit+P and select Install Package Control
Install rust-enhanced -The official Sublime Text 3 package for the Rust Programming Language
Start SublimeText3, Ctrl+Shit+P and select Install Package Control and install “LSP”
Install Rust Language Server:rustup updaterustup component add rls-preview rust-analysis rust-srcrustup run stable-x86_64-pc-windows-msvc rls --version
Start SublimeText3, Ctrl+Shit+P and select Install Package Control and install “LSP”
Install LSP for SublimeText3:https://github.com/tomv564/LSPCtrl+Shift+P in SublimeText3 and “LSP: Enable Language Server Globally” then select rlsInstall Rust Language Server:
Go to https://github.com/rust-analyzer/rust-analyzer/releases
Download rust-analyzer-windows.exe
Move it to C:\Users\lithi\.cargo\bin
Rename it to rust-analyzer.exe
Ctrl+Shift+P in SublimeText3 and “LSP: Enable Language Server Globally” then select rust-analyzer
Rust Basics
Intro video with code specifically outlining the features of the language:
A Case for Oxidation: The Rust Programming LanguageHello World and First steps with cargo:
https://doc.rust-lang.org/cargo/getting-started/first-steps.htmlBest Quick Dive: A Gentle Introduction to Rust
https://stevedonovan.github.io/rust-gentle-intro/Official Books
Hello World and Example code (Short Book)
https://doc.rust-lang.org/rust-by-example/hello.htmlThe Rust Programming Language (Long Book)
https://doc.rust-lang.org/book/