The Rust Language Server 0.130.5 announces its first 1.0 release candidate. The 1.0 release is available on the nightly and beta version and will be available with stable Rust version from 3rd September this year.
RLS 1.0 will be able to handle most small and medium sized projects with certain limitations and improvements. Major highlights of this release are syntax highlighting, syntactic code completion and code intelligence.To easily install RLS you can install an extension of your favorite editor, for example:
Each editor does its own syntax highlighting
Code completion is syntactic, performed by Racer. Because it is syntactic there are many instances where it is incomplete or incorrect.
Errors and other diagnostics are displayed inline. Exactly how the errors are presented depends on the editor.
By Rustfmt (which is also at the 1.0 release candidate stage).
Clippy is installed as part of the RLS. You can turn it on with a setting in your editor or with the usual crate attribute.
The RLS can do the following:
For more information visit the release notes page.
Rust 2018 Edition Preview 2 is here!
Rust and Web Assembly announce ‘wasm-bindgen 0.2.16’ and the first release of ‘wasm-bindgen-futures’
Rust 1.28 is here with global allocators, nonZero types and more