DEV Community

Cover image for Best Development Tools And Resources For Rust
Eduardo Flores
Eduardo Flores

Posted on

Best Development Tools And Resources For Rust

As new Rust developers, we constantly encounter new challenges, especially coming from languages like JavaScript or Python. Rust isn't as familiar as other languages, but being a modern language it brings many benefits to the table that other older languages don't.

The purpose of this article is to help Rust developers find tools and resources to make the most out of their developer experience. If you are reading this and Rust is not installed in your system head over to this website and install it.

Learning Rust

If you are new to Rust, you are going to want to read The Rust Book, which is a free book containing everything you need to know about the language, you can alternatively buy the book online if you prefer paperback books.

Reading the book will give you a better understanding of the design choices made by the Core Team and what are the differences of Rust in comparison to other languages, this will make it easier for you to get started writing code!

After you are done with the book check the learning section on the Rust website, it contains many more resources for you to continue your journey into becoming a Rustancean.

You should also check out Jon Gjengset YouTube channel and join the Rust Discord server.

This book assumes that you’ve written code in another programming language, having personally read the book I can assure you that you don't want to read this book as your first language unless you are very interested in systems development.

Code Editor vs IDE

Visual Studio Code

vscode.webp

When I started learning Rust I used Visual Studio Code, it is a fantastic code editor with a lot of extensibility, even to the point as making it work as a complete IDE, updates constantly bring new features and performance keeps getting better as Microsoft pushes Electron forward.

Although my experience writing Rust code was good, it lacked some features other development tools like JetBrains CLion have, such as type inference and in depth coding assistance which is very nice to have.

Nevertheless, my experience was really pleasant and I could comfortably go back to Visual Studio Code.

Rust extensions for Visual Studio Code

  1. Rust
  2. Rust Grammar
  3. vscode-rust-syntax
  4. Better Toml

Other Tools

  1. Code Runner
  2. How to debug Rust in Visual Studio Code
  3. Error Handling

JetBrains CLion

1440x900-clion.png

When I made the switch to CLion I immediately noticed a much better integration of the IDE with Rust. The Rust Plugin developed by JetBrains is the single piece of software that convinced me to switch from Visual Studio Code to CLion, here are some of the features that caught my eye.

  • Right-click to create new files has Rust templates.
  • The Cargo plugin allows you to run cargo commands with one click.
  • Debugging is already integrated with the IDE.
  • Preview the types of your variables as you write your code in real-time thanks to type inference.

Click here for a full list of features.

Plugins

  1. Toml

Of course, CLion is not free software, but you can get a free license if you are a student. If you are not a student you can still get a free or discounted license, alternatively you can buy CLion here.

Conclusion

The resources in this article are not exhaustive, these are just some of the resources that helped me in my journey into becoming a Rustacean, it covers some of the best resources to learn Rust and how to set up your development environment to take full advantage of the tools we have available.

If you enjoyed this article, consider sharing it so more people can benefit from it! Also, feel free to @me on Twitter.

Top comments (0)