2020-12-23 19:17:34 +00:00
|
|
|
# The Rust Programming Language
|
|
|
|
|
2023-02-27 03:20:09 +00:00
|
|
|
[![Rust Community](https://img.shields.io/badge/Rust_Community%20-Join_us-brightgreen?style=plastic&logo=rust)](https://www.rust-lang.org/community)
|
|
|
|
|
2016-06-27 17:51:27 +00:00
|
|
|
This is the main source code repository for [Rust]. It contains the compiler,
|
2020-07-19 14:53:37 +00:00
|
|
|
standard library, and documentation.
|
2015-05-15 05:43:40 +00:00
|
|
|
|
2022-12-29 05:47:09 +00:00
|
|
|
[Rust]: https://www.rust-lang.org/
|
2015-06-18 21:48:51 +00:00
|
|
|
|
2022-12-24 15:48:35 +00:00
|
|
|
**Note: this README is for _users_ rather than _contributors_.**
|
2022-12-29 05:47:09 +00:00
|
|
|
If you wish to _contribute_ to the compiler, you should read
|
|
|
|
[CONTRIBUTING.md](CONTRIBUTING.md) instead.
|
2020-06-17 19:25:00 +00:00
|
|
|
|
2023-10-19 20:32:11 +00:00
|
|
|
<details>
|
2023-11-30 05:03:31 +00:00
|
|
|
<summary>Table of Contents</summary>
|
2023-10-19 20:32:11 +00:00
|
|
|
|
|
|
|
- [Quick Start](#quick-start)
|
2024-01-15 21:57:29 +00:00
|
|
|
- [Installing from Source](#installing-from-source)
|
2023-10-19 20:32:11 +00:00
|
|
|
- [Getting Help](#getting-help)
|
|
|
|
- [Contributing](#contributing)
|
|
|
|
- [License](#license)
|
|
|
|
- [Trademark](#trademark)
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
2013-07-18 23:27:43 +00:00
|
|
|
## Quick Start
|
2012-07-10 05:13:48 +00:00
|
|
|
|
2017-06-09 05:37:22 +00:00
|
|
|
Read ["Installation"] from [The Book].
|
2012-01-23 21:53:12 +00:00
|
|
|
|
2018-12-10 22:28:55 +00:00
|
|
|
["Installation"]: https://doc.rust-lang.org/book/ch01-01-installation.html
|
2015-08-09 21:15:05 +00:00
|
|
|
[The Book]: https://doc.rust-lang.org/book/index.html
|
2013-07-18 23:27:43 +00:00
|
|
|
|
2024-01-15 21:57:29 +00:00
|
|
|
## Installing from Source
|
2013-07-18 23:27:43 +00:00
|
|
|
|
2024-01-15 21:57:29 +00:00
|
|
|
If you really want to install from source (though this is not recommended), see
|
|
|
|
[INSTALL.md](INSTALL.md).
|
2012-01-23 21:53:12 +00:00
|
|
|
|
2015-02-21 22:46:06 +00:00
|
|
|
## Getting Help
|
2014-08-22 18:04:35 +00:00
|
|
|
|
2022-12-24 01:03:50 +00:00
|
|
|
See https://www.rust-lang.org/community for a list of chat platforms and forums.
|
2015-02-13 17:26:44 +00:00
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
2022-12-24 01:03:50 +00:00
|
|
|
See [CONTRIBUTING.md](CONTRIBUTING.md).
|
2020-09-02 00:48:15 +00:00
|
|
|
|
2012-07-10 05:13:48 +00:00
|
|
|
## License
|
|
|
|
|
2022-12-29 05:47:09 +00:00
|
|
|
Rust is primarily distributed under the terms of both the MIT license and the
|
|
|
|
Apache License (Version 2.0), with portions covered by various BSD-like
|
|
|
|
licenses.
|
2012-07-10 05:13:48 +00:00
|
|
|
|
2016-06-27 17:51:27 +00:00
|
|
|
See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and
|
|
|
|
[COPYRIGHT](COPYRIGHT) for details.
|
2019-04-06 10:04:06 +00:00
|
|
|
|
|
|
|
## Trademark
|
|
|
|
|
2021-05-26 02:51:13 +00:00
|
|
|
[The Rust Foundation][rust-foundation] owns and protects the Rust and Cargo
|
2022-12-29 05:47:09 +00:00
|
|
|
trademarks and logos (the "Rust Trademarks").
|
2019-04-06 10:04:06 +00:00
|
|
|
|
2022-12-29 05:47:09 +00:00
|
|
|
If you want to use these names or brands, please read the
|
|
|
|
[media guide][media-guide].
|
2019-04-06 10:04:06 +00:00
|
|
|
|
2019-04-12 14:14:21 +00:00
|
|
|
Third-party logos may be subject to third-party copyrights and trademarks. See
|
|
|
|
[Licenses][policies-licenses] for details.
|
|
|
|
|
2021-05-20 10:11:01 +00:00
|
|
|
[rust-foundation]: https://foundation.rust-lang.org/
|
2022-12-29 05:47:09 +00:00
|
|
|
[media-guide]: https://foundation.rust-lang.org/policies/logo-policy-and-media-guide/
|
2019-04-12 14:14:21 +00:00
|
|
|
[policies-licenses]: https://www.rust-lang.org/policies/licenses
|