发布于 2016-09-30 00:21:04 | 98 次阅读 | 评论: 0 | 来源: 网友投递
Rust 编程语言
Rust是Mozilla开发的注重安全、性能和并发性的编程语言。创建这个新语言的目的是为了解决一个很顽疾的问题:软件的演进速度大大低于硬件的演进,软件在语言级别上无法真正利用多核计算带来的性能提升。Rust是针对多核体系提出的语言,并且吸收一些其他动态语言的重要特性,比如不需要管理内存,比如不会出现Null指针等等。
Rust 1.12 发布了。
更新内容:
Many minor improvements to the documentation.
rustc
supports three new MUSL targets on ARM:arm-unknown-linux-musleabi
, arm-unknown-linux-musleabihf
, andarmv7-unknown-linux-musleabihf
. These targets produce statically-linked binaries. There are no binary release builds yet though.
In error descriptions,references and unknown numeric types have more human-friendly errors.
The test runner now emits a warning when tests run over 60 seconds
Rust releases now come with source packages that can be installed by rustup via rustup component add rust-src
. The resulting source code can be used by tools and IDES, located in the sysroot under lib/rustlib/src
.
完整发行说明,请点击此处查看。
下载地址: