- 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.
推薦閱讀
- Computer Vision for the Web
- C# Programming Cookbook
- C# 從入門到項目實踐(超值版)
- 新編Premiere Pro CC從入門到精通
- Learning Network Forensics
- Symfony2 Essentials
- Mastering Elixir
- Java EE項目應用開發
- H5匠人手冊:霸屏H5實戰解密
- Python程序設計:基礎與實踐
- Qt編程快速入門
- Mastering React Test:Driven Development
- Twitter Bootstrap Web Development How-to
- MATLAB程序設計及應用
- C++從入門到精通(第4版)