1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-15 06:20:32 +02:00

Chromium: Add redox_syscall to speaker notes for the third-party exercise. (#1571)

Speaker notes for Chromium's third-party crate exercise list the
transitive dependencies that will be downloaded during the exercise.
Before this commit the list was missing the `redox_syscall` crate.

Additionally, the commit sorts the crates to make it easier to compare
with the output of `git status` or `ls`.

---------

Co-authored-by: Martin Geisler <martin@geisler.net>
This commit is contained in:
Lukasz Anforowicz 2023-12-11 07:21:53 -08:00 committed by GitHub
parent 395d58d7ce
commit f04e277744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,13 +9,25 @@ skip ahead and do that now if you like. Or, you could create a new
[`rust_executable` target][2] which uses `uwuify`).
<details>
Students will need to download lots of transitive dependencies.
The total crates needed are: uwuify, smallvec, scopeguard, parking_lot,
parking_lot_core, lock_api and instant. If students are downloading even
The total crates needed are:
- `instant`,
- `lock_api`,
- `parking_lot`,
- `parking_lot_core`,
- `redox_syscall`,
- `scopeguard`,
- `smallvec`, and
- `uwuify`.
If students are downloading even
more than that, they probably forgot to turn off the default features.
Thanks to [Daniel Liu][3] for this crate!
</detail>