Rust
Installation
Install rustup:
Install Rust Language Server:
Install the Rust Language Server VSCode extension
Hello World
From Rust by Example:
Packaging etc
Packaging is done with Cargo
Each distributed package is called a Crate
The primary Crate registry is Crates.io
A simple starting guide is here
To create a new project, then compile and run it:
Add dependencies to Cargo.toml
Last updated