This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Sylvain Kerkour
Rust takes a loooot of time to compile, even with incremental compilation. It's not rare that a small change leads to 2 or 3 minutes of compilation to test the change, which frustrates a lot of new rustaceans. It's a deliberate choice made by the language designers to favor runtime speed over compilation speed (it's why we love Rust: raw speed), and there is no magic incantation or cheat code to reduce this compilation time.
It took me some time to find a good workflow, which does not break my flow state (when I'm in the zone), so I thought it was worth sharing if it can save you time, dear reader.
But first, I have a question: What makes you happier, swimming against the current or embracing the flow and getting things done?
If you come from programming languages such as TypeScript or Go, where the compilation is extremely fast, you should be used to fast code -> manually test -> fix -> repeat
cycles. Once a project becomes serious (large) enough, it's simply not possible in Rust. But it's absolutely not a reason to give up all the awesome things that Rust is bringing us, as software developers and engineers.
Here is the workflow I've developed over the past few years of professional Rust development after I understood that swimming against the current only brings eternal frustration.
(Actually, there are some "magic" workarounds such a sccache to speed up CI, but in my opinion they are too complex, and I highly value simplicity, so thank you but no).
Use rust-analyzer
First and foremost, use rust-analyzer
.
When I started software development with Rust, rust-analyzer
was not an option, and Rust programming was torture.
Today, I think that rust-analyzer
is one of the most crucial factors for Rust adoption and user base growth. It does not only provide code completion but also inline warnings and errors and a lot of other features that come in handy during your programming sessions.
Not using rust-analyzer
will make you lost a lot of time and I believe is pure and simple masochism.
Keep in mind that, sometimes, rust-analyzer
will not give the most helpful error messages, so if you can't fix an error just by reading rust-analyzer
messages, switch to cargo check
which will give far better information.
Trust your instinct
The next most important thing not to break your flow is to trust your instinct.
Because even rust-analyzer
and cargo check
are sometimes slow (up to a dozen seconds), waiting for them to complete after every line of code was driving me crazy.
Now, I write a lot of code before looking at errors and warnings. Trusting my instinct also means that I do not manually test my programs every few minutes. My experience is that fast code -> manually test -> fix -> repeat
cycles are not possible in Rust. Instead, I trust my code to be mostly correct and do not interrupt my flow with unimportant things.
Once my full function or trait is implemented, I start fixing warnings and errors.
Write tests
Your code passes cargo check
? Great! But we are Humans: we are all fallible.
So the next step is to write tests. The Rust compiler provides a lot of guarantees and forces us to handle all edge cases, but is no help against logic errors.
Some prefer to write tests even before writing the actual code (TDD), I personally prefer after, anyway, you have to write tests to detect logic errors.
Embrace continuous integration
Running tests require to compile them, so as you have guessed, it's slow.
So the last (but not least) thing to do to be productive in Rust, is to embrace continuous integration.
The goal is to never run the tests on your own computer, but instead let your CI bots run the tests for you (they are machines after all, machines are made to work for us), and then, at the end of the day, check if some tests are failing and fix them.
For a large Go or Node.js project, a CI pipeline should take between 5 and 10 minutes. With Rust, on the other hand, it takes between 15 and 45 minutes to run a CI pipeline, depending on your project and the power of your CI servers.
So the most sensible thing to do is to fix your failing tests only once a day.
It's called bundling: instead of splitting my day (and thus my attention and your focus) in smaller cycles, my code -> manually test -> fix -> repeat
cycle now lasts a whole day.
In the same way that checking your emails every hour will kill your productivity, waiting for your tests to run every hour will kill your effectiveness.
As a final note, it's crucial for me to fix tests at the end of the day as it's a non-creative task. All my creative energy, available at the beginning of the day, is dedicated to implementing new things, not fixing tests.
For GitHub you have GitHub Actions and for GitLab you have GitLab CI/CD.
Here is an example of a CI pipeline for one of my Rust projects: phaser/.github/workflows/ci.yml
Project maintenance
Thanks to cargo
and the community, project maintenance is straightforward in rust. You'll need to install cargo-outdated
and cargo-audit
:
$ cargo install -f cargo-audit
$ cargo install -f cargo-outdated
And then, once a week:
$ cargo update
$ cargo outdated
# manually update the outdated dependencies
$ cargo audit
Aaaand, that's all. Good Rusting :)
Want to learn more real-world Rust? Take a look at my book Black Hat Rust to learn Rust, Offensive Security and applied Cryptography.
This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Sylvain Kerkour
Sylvain Kerkour | Sciencx (2022-10-24T10:15:34+00:00) My Rust development workflow (after 3+ years). Retrieved from https://www.scien.cx/2022/10/24/my-rust-development-workflow-after-3-years/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.