1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-08-14 12:32:49 +02:00

Remove dangling links in cargo/rust-ecosystem.md. (#332)

This commit is contained in:
gendx
2023-02-03 15:50:15 +00:00
committed by GitHub
parent 06c7346979
commit bd98d03b44

View File

@@ -3,12 +3,12 @@
The Rust ecosystem consists of a number of tools, of which the main ones are:
* `rustc`: the Rust compiler which turns `.rs` files into binaries and other
intermediate formats[^rustc].
intermediate formats.
* `cargo`: the Rust dependency manager and build tool. Cargo knows how to
download dependencies hosted on <https://crates.io> and it will pass them to
`rustc` when building your project. Cargo also comes with a built-in test
runner which is used to execute unit tests[^cargo].
runner which is used to execute unit tests.
* `rustup`: the Rust toolchain installer and updater. This tool is used to
install and update `rustc` and `cargo` when new versions of Rust is released.