An open API service indexing awesome lists of open source software.

https://github.com/0xisk/exploring-rust

A repository focused on learning and practicing Rust.
https://github.com/0xisk/exploring-rust

learning learning-rust programming-language rust

Last synced: 5 months ago
JSON representation

A repository focused on learning and practicing Rust.

Awesome Lists containing this project

README

          

# Notes on "The Rust Programming Language"

## `rustup`

1. Check the active toolchain
```shell
rustup show active-toolchain
```

2. Change the default toolchain to stable.
```shell
rustup default stable
```

## `cargo`
1. Install a package
```shell
cargo install
```