发布于 2015-12-11 00:57:09 | 233 次阅读 | 评论: 0 | 来源: 网友投递
Rust 编程语言
Rust是Mozilla开发的注重安全、性能和并发性的编程语言。创建这个新语言的目的是为了解决一个很顽疾的问题:软件的演进速度大大低于硬件的演进,软件在语言级别上无法真正利用多核计算带来的性能提升。Rust是针对多核体系提出的语言,并且吸收一些其他动态语言的重要特性,比如不需要管理内存,比如不会出现Null指针等等。
Rust 1.5 发布,该版本最主要更新是支持 cargo install 。 cargo install
可以用于安装新的子命令:
cargo-check
: statically check a project, but don’t build a binary.
cargo-edit
: add or remove dependencies for a project through the command line.
cargo-graph
: build dependency graphs for a project using GraphViz.
cargo-watch
: automatically re-run a Cargo command when the project changes.
更多内容请看:release notes。
下载地址: Rust 1.5 stable。
Rust 是 Mozilla 的一个新的编程语言,由web语言的领军人物Brendan Eich(js之父),Dave Herman以及Mozilla公司的Graydon Hoare 合力开发。