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.
- Host: GitHub
- URL: https://github.com/0xisk/exploring-rust
- Owner: 0xisk
- Created: 2020-06-27T19:34:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-29T08:36:43.000Z (about 1 year ago)
- Last Synced: 2025-04-04T22:33:24.925Z (10 months ago)
- Topics: learning, learning-rust, programming-language, rust
- Language: Rust
- Homepage:
- Size: 6.68 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```