2022-12-21 17:36:30 +02:00
# Comprehensive Rust 🦀
2023-05-16 00:12:10 +02:00
[![Build workflow ](https://img.shields.io/github/actions/workflow/status/google/comprehensive-rust/build.yml?style=flat-square )](https://github.com/google/comprehensive-rust/actions/workflows/build.yml?query=branch%3Amain)
2023-03-07 14:45:00 +02:00
[![GitHub contributors ](https://img.shields.io/github/contributors/google/comprehensive-rust?style=flat-square )](https://github.com/google/comprehensive-rust/graphs/contributors)
[![GitHub stars ](https://img.shields.io/github/stars/google/comprehensive-rust?style=flat-square )](https://github.com/google/comprehensive-rust/stargazers)
2023-05-02 08:02:28 +02:00
This repository has the source code for Comprehensive Rust 🦀, a multi-day Rust
2022-12-21 17:36:30 +02:00
course developed by the Android team. The course covers all aspects of Rust,
2023-05-02 08:02:28 +02:00
from basic syntax to generics and error handling. It also includes deep dives on
2023-11-27 20:21:19 +02:00
[Android], [Chromium], [bare-metal], and [concurrency].
2023-05-02 08:02:28 +02:00
2023-05-11 14:37:35 +02:00
[Android]: https://google.github.io/comprehensive-rust/android.html
2024-02-12 17:24:24 +02:00
[Chromium]: https://google.github.io/comprehensive-rust/chromium.html
2023-05-11 14:37:35 +02:00
[bare-metal]: https://google.github.io/comprehensive-rust/bare-metal.html
[concurrency]: https://google.github.io/comprehensive-rust/concurrency.html
2022-12-21 17:36:30 +02:00
2022-12-21 19:37:55 +02:00
Read the course at **https://google.github.io/comprehensive-rust/** .
2023-01-03 17:40:37 +02:00
## Course Format and Target Audience
The course is used internally at Google when teaching Rust to experienced
software engineers. They typically have a background in C++ or Java.
The course is taught in a classroom setting and we hope it will be useful for
others who want to teach Rust to their team. The course will be less useful for
self-study since you miss out on the discussions happening in the classroom. You
don't see the questions and answers and you don't see the compiler errors we
trigger when going through the code samples. We hope to improve on this via
[speaker notes ](https://github.com/google/comprehensive-rust/issues/53 ) and by
[publishing videos ](https://github.com/google/comprehensive-rust/issues/52 ).
2023-10-04 13:01:02 +02:00
## Press
2023-10-06 14:27:31 +02:00
Articles and blog posts from around the web which cover Comprehensive Rust:
- 2023-09-08:
_[Teaching Rust in 5 days](https://mo8it.com/blog/teaching-rust/)_ .
Comprehensive Rust was used as a base for a 5-day university class on Rust.
- 2023-09-21:
_[Scaling Rust Adoption Through Training](https://security.googleblog.com/2023/09/scaling-rust-adoption-through-training.html)_ .
2023-10-04 13:01:02 +02:00
We published a blog post with details on the development of the course.
2023-10-06 14:27:31 +02:00
- 2023-10-02:
_[In Search of Rust Developers, Companies Turn to In-House Training](https://www.darkreading.com/application-security/google-microsoft-take-refuge-in-rust-languages-better-security)_ .
About how Microsoft, Google, and others are training people in Rust.
2023-10-04 13:01:02 +02:00
2022-12-21 17:36:30 +02:00
## Building
2023-02-28 15:05:09 +02:00
The course is built using a few tools:
2023-05-30 17:04:19 +02:00
2023-04-05 16:08:11 +02:00
- [mdbook ](https://github.com/rust-lang/mdBook )
- [mdbook-svgbob ](https://github.com/boozook/mdbook-svgbob )
2024-07-08 16:51:14 +02:00
- [mdbook-i18n-helpers and i18n-report ](https://github.com/google/mdbook-i18n-helpers )
2023-05-09 14:43:29 +02:00
- [mdbook-exerciser ](mdbook-exerciser/ )
2023-09-20 16:01:53 +02:00
- [mdbook-course ](mdbook-course/ )
2023-02-28 15:05:09 +02:00
2024-07-22 13:37:19 +02:00
In addition,
[mdbook-linkcheck ](https://github.com/Michael-F-Bryan/mdbook-linkcheck ) checks
the internal links.
2023-10-25 20:23:21 +02:00
First install Rust by following the instructions on https://rustup.rs/. Then
clone this repository:
2023-06-13 13:01:12 +02:00
```shell
2023-07-11 00:52:00 +02:00
git clone https://github.com/google/comprehensive-rust/
cd comprehensive-rust
2023-06-13 13:01:12 +02:00
```
Then install these tools with:
2022-12-21 17:36:30 +02:00
```shell
2023-07-11 00:52:00 +02:00
cargo install mdbook
2024-02-19 18:13:46 +02:00
cargo install --locked mdbook-svgbob
cargo install --locked mdbook-i18n-helpers
2024-07-08 16:51:14 +02:00
cargo install --locked i18n-report
2024-07-22 13:37:19 +02:00
cargo install --locked mdbook-linkcheck
2024-02-19 18:13:46 +02:00
cargo install --locked --path mdbook-exerciser
cargo install --locked --path mdbook-course
2022-12-21 17:36:30 +02:00
```
2023-06-13 13:01:12 +02:00
Run
2022-12-21 17:36:30 +02:00
```shell
2023-07-11 00:52:00 +02:00
mdbook test
2022-12-21 17:36:30 +02:00
```
to test all included Rust snippets. Run
```shell
2023-07-11 00:52:00 +02:00
mdbook serve
2022-12-21 17:36:30 +02:00
```
to start a web server with the course. You'll find the content on
< http: // localhost:3000 > . You can use `mdbook build` to create a static version
2023-05-09 14:43:29 +02:00
of the course in the `book/` directory. Note that you have to separately build
2023-05-24 20:39:49 +02:00
and zip exercises and add them to `book/html` . To build any of the translated
versions of the course, run `MDBOOK_BOOK__LANGUAGE=xx mdbook build -d book/xx`
where `xx` is the ISO 639 language code (e.g. `da` for the Danish translation).
[TRANSLATIONS.md ](TRANSLATIONS.md ) contains further instructions.
2023-05-30 17:04:19 +02:00
2023-06-02 14:46:11 +02:00
> **Note** On Windows, you need to enable symlinks
> (`git config --global core.symlinks true`) and Developer Mode.
2022-12-21 17:36:30 +02:00
## Contact
2023-05-30 17:04:19 +02:00
For questions or comments, please contact
[Martin Geisler ](mailto:mgeisler@google.com ) or start a
[discussion on GitHub ](https://github.com/google/comprehensive-rust/discussions ).
We would love to hear from you.