|
1 | 1 | <div align="center">
|
2 |
| - <img alt="The Rust Programming Language: A language empowering everyone to build reliable and efficient software" src="https://www.rust-lang.org/static/images/rust-social-wide.jpg" width="512" height="256"> |
3 |
| - |
4 |
| -[Website](https://www.rust-lang.org/) | [Getting started](https://www.rust-lang.org/learn/get-started) | [Learn](https://www.rust-lang.org/learn) | [Documentation](https://www.rust-lang.org/learn#learn-use) | [Contributing](CONTRIBUTING.md) |
| 2 | + <img alt="The Rust Programming Language: A language empowering everyone to build reliable and efficient software" |
| 3 | + src="https://www.rust-lang.org/static/images/rust-social-wide.jpg" |
| 4 | + width="512" height="256"> |
5 | 5 |
|
| 6 | +[Website][Rust] | [Getting started] | [Learn] | [Documentation] | [Contributing] |
6 | 7 | </div>
|
7 | 8 |
|
8 | 9 | This is the main source code repository for [Rust]. It contains the compiler,
|
9 | 10 | standard library, and documentation.
|
10 | 11 |
|
11 | 12 | [Rust]: https://www.rust-lang.org/
|
| 13 | +[Getting Started]: https://www.rust-lang.org/learn/get-started |
| 14 | +[Learn]: https://www.rust-lang.org/learn |
| 15 | +[Documentation]: https://www.rust-lang.org/learn#learn-use |
| 16 | +[Contributing]: CONTRIBUTING.md |
12 | 17 |
|
13 | 18 | ## Why Rust?
|
14 | 19 |
|
15 | 20 | - **Performance:** Fast and memory-efficient, suitable for critical services, embedded devices, and easily integrate with other languages.
|
16 | 21 |
|
17 | 22 | - **Reliability:** Our rich type system and ownership model ensure memory and thread safety, reducing bugs at compile-time.
|
18 | 23 |
|
19 |
| -- **Productivity:** Comprehensive documentation, user-focused compiler, and advanced tooling including package manager and build tool ([Cargo](https://github.com/rust-lang/cargo)), auto-formatter ([rustfmt](https://github.com/rust-lang/rustfmt)), linter ([Clippy](https://github.com/rust-lang/rust-clippy)) and editor support ([rust-analyzer](https://github.com/rust-lang/rust-analyzer)). |
| 24 | +- **Productivity:** Comprehensive documentation, a compiler committed to providing great diagnostics, and advanced tooling including package manager and build tool ([Cargo]), auto-formatter ([rustfmt]), linter ([Clippy]) and editor support ([rust-analyzer]). |
| 25 | + |
| 26 | +[Cargo]: https://github.com/rust-lang/cargo |
| 27 | +[rustfmt]: https://github.com/rust-lang/rustfmt |
| 28 | +[Clippy]: https://github.com/rust-lang/rust-clippy |
| 29 | +[rust-analyzer]: https://github.com/rust-lang/rust-analyzer |
20 | 30 |
|
21 | 31 | ## Quick Start
|
22 | 32 |
|
|
0 commit comments