- Mastering Rust
- Rahul Sharma Vesa Kaihlavirta
- 140字
- 2021-07-02 13:35:13
Installing the Rust compiler and toolchain
The Rust toolchain has two major components: the compiler, rustc, and the package manager, cargo, which helps manage Rust projects. The toolchain comes in three release channels:
- Nightly: The daily successful build from the master development branch. This contains all the latest features, many of which are unstable.
- Beta: This is released every six weeks. A new beta branch is taken from nightly. It contains only features that are flagged as stable.
- Stable: This is released every six weeks. The previous beta branch becomes the new stable release.
Developers are encouraged to use the stable release channel. However, the nightly version enables bleeding edge features, and some libraries and programs require it. You can change to the nightly toolchain easily with rustup. We'll see how we can do that in a moment.
推薦閱讀
- ASP.NET MVC4框架揭秘
- 零基礎學Python數據分析(升級版)
- Spring+Spring MVC+MyBatis整合開發實戰
- 零基礎學Python網絡爬蟲案例實戰全流程詳解(入門與提高篇)
- Swift細致入門與最佳實踐
- Learning ArcGIS for Desktop
- 批調度與網絡問題的組合算法
- Unity 2018 Shaders and Effects Cookbook
- 計算機應用基礎案例教程
- Java Web應用開發項目教程
- Practical Predictive Analytics
- SAS編程演義
- Learning Dynamics NAV Patterns
- Unity AI Game Programming(Second Edition)
- Python網絡運維自動化