https://github.com/fredrkl/rust-programming-language-studying
Following the Rust programming language book
https://github.com/fredrkl/rust-programming-language-studying
rust-lang studying
Last synced: 14 days ago
JSON representation
Following the Rust programming language book
- Host: GitHub
- URL: https://github.com/fredrkl/rust-programming-language-studying
- Owner: fredrkl
- License: mit
- Created: 2023-06-23T20:16:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-03T05:52:10.000Z (over 1 year ago)
- Last Synced: 2025-02-15T06:54:54.770Z (over 1 year ago)
- Topics: rust-lang, studying
- Language: Rust
- Homepage: https://fredrkl.github.io/rust-programming-language-studying/
- Size: 108 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Studying the Rust Programming Language

Following the Rust Book, available at .
There is also a Microsoft Learn course available at
[](https://opensource.org/licenses/MIT)
## Setup
Follow the instructions at to install Rust.
## Lessons learned
### Setup
When setting up the rust-analyzer and having my projects in a projects folder I needed to add another Cargo.toml file in the root, next to the projects folder. This file should contain the list of all the projects in the folder I want the rust-analyzer to be able to find.
###
Use the following to set envionment variables when using `cargo-watch`:
```rust
RUST_BACKTRACE=1 cargo watch -x run
```
## Building
[](https://github.com/fredrkl/rust-programming-language-studying/actions/workflows/rust.yml)