The highlights of this version include support for frontend development and databases, as well as full line code completion.
Free for non-commercial use. 30-day trial available.
In response to your feedback, we’ve reimplemented support for web technologies and databases in RustRover.
This release introduces full line code completion for the Rust language. This feature suggests entire lines of code using a deep learning model that runs locally without sending any data outside your IDE. The single-line gray text suggestions complete statements based on the context of the current file. Full line code completion is included in your RustRover subscription at no extra cost.
You can now debug active applications without restarting them. This makes it easier to work on dynamic libraries or plugins in externally managed programs.
[]
if its type is an object, and [[]]
if its type is an array of objects.
lints
.
Now, when using run/debug configurations, a dedicated Cargo profile switcher allows you to specify the profile, so you no longer have to do so manually.
?
operator
We significantly improved ?
operator type-checking. The operator is now suggested by auto completion in a number of cases, including chained method calls.
There is also a new inspection to highlight unwrap()
calls that allow using ?
.
Module folders are now conveniently marked as packages in the Project view to help distinguish them from regular ones.
Also, dragging and dropping a file no longer triggers a Move dialog for the parent directory.
Proc_macro
enhancements
Cargo now compiles proc_macros and build scripts for all dependencies that are necessary for code analysis to function properly. Note that in rare cases you’ll need to disable features that explicitly conflict.
New quick-fixes now suggest adding the #[proc_macro]
, #[proc_macro_derive]
, and #[proc_macro_attribute]
attributes to your pub fn
in procedural macro crates.
Intention actions are now available for tokens with a single matching element in the macro expansion.
If you create a usage of a function before declaring it, the IDE will now offer a completion suggestion with its name.
This update also introduces a ton of other improvements:
async
method chains.Option<...>
type return values in Some()
(E0308).
{variables:?}
(E0277).
return
is unnecessary.extern location for crate does not exist on sync
error has been fixed.postfix-match
feature.Option/Result
is now displayed in the Threads & Variables view when debugging with Unix LLDB.format!
macro arguments have been improved, and the IDE now highlights unresolved methods.Chinese, Japanese, and Korean UI language packs are now included in the base IDE installation. You can switch the language via Settings | Appearance & Behavior | System Settings | Language and Region.
You can now choose the languages you want sticky lines to appear for. You can customize this feature either in Settings | Editor | General | Sticky Lines or through the context menu that appears when you right-click on a sticky line in the editor.
The Search Everywhere dialog now includes an option to preview the codebase elements you’re searching for. Enabling this feature through the Preview icon on the dialog’s toolbar will cause a preview pane to appear under the search results, offering additional context and making it easier to navigate through your project.
We're currently working on implementing Rust-specific integration with AI Assistant, but this is still in the early stages of development. Stay tuned for updates!
RustRover also inherited remote development and collaboration and version control systems features from the platform release.