|
1 |
| -# The Rust Programming Language |
2 |
| - |
3 |
| -[](https://www.rust-lang.org/community) |
| 1 | +<div align="center"> |
| 2 | + <picture> |
| 3 | + <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/rust-lang/www.rust-lang.org/master/static/images/rust-social-wide-dark.svg"> |
| 4 | + <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/rust-lang/www.rust-lang.org/master/static/images/rust-social-wide-light.svg"> |
| 5 | + <img alt="The Rust Programming Language: A language empowering everyone to build reliable and efficient software" |
| 6 | + src="https://raw.githubusercontent.com/rust-lang/www.rust-lang.org/master/static/images/rust-social-wide-light.svg" |
| 7 | + width="50%"> |
| 8 | + </picture> |
| 9 | + |
| 10 | +[Website][Rust] | [Getting started] | [Learn] | [Documentation] | [Contributing] |
| 11 | +</div> |
4 | 12 |
|
5 | 13 | This is the main source code repository for [Rust]. It contains the compiler,
|
6 | 14 | standard library, and documentation.
|
7 | 15 |
|
8 | 16 | [Rust]: https://www.rust-lang.org/
|
| 17 | +[Getting Started]: https://www.rust-lang.org/learn/get-started |
| 18 | +[Learn]: https://www.rust-lang.org/learn |
| 19 | +[Documentation]: https://www.rust-lang.org/learn#learn-use |
| 20 | +[Contributing]: CONTRIBUTING.md |
| 21 | + |
| 22 | +## Why Rust? |
9 | 23 |
|
10 |
| -**Note: this README is for _users_ rather than _contributors_.** |
11 |
| -If you wish to _contribute_ to the compiler, you should read |
12 |
| -[CONTRIBUTING.md](CONTRIBUTING.md) instead. |
| 24 | +- **Performance:** Fast and memory-efficient, suitable for critical services, embedded devices, and easily integrate with other languages. |
13 | 25 |
|
14 |
| -<details> |
15 |
| -<summary>Table of Contents</summary> |
| 26 | +- **Reliability:** Our rich type system and ownership model ensure memory and thread safety, reducing bugs at compile-time. |
16 | 27 |
|
17 |
| -- [Quick Start](#quick-start) |
18 |
| -- [Installing from Source](#installing-from-source) |
19 |
| -- [Getting Help](#getting-help) |
20 |
| -- [Contributing](#contributing) |
21 |
| -- [License](#license) |
22 |
| -- [Trademark](#trademark) |
| 28 | +- **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]). |
23 | 29 |
|
24 |
| -</details> |
| 30 | +[Cargo]: https://github.com/rust-lang/cargo |
| 31 | +[rustfmt]: https://github.com/rust-lang/rustfmt |
| 32 | +[Clippy]: https://github.com/rust-lang/rust-clippy |
| 33 | +[rust-analyzer]: https://github.com/rust-lang/rust-analyzer |
25 | 34 |
|
26 | 35 | ## Quick Start
|
27 | 36 |
|
|
0 commit comments