this post was submitted on 14 Nov 2024
18 points (95.0% liked)
Rust
5989 readers
19 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
For me the biggest speedup in my workflow was not through actually cutting down on the build time but rather using cargo watch. With
cargo watch -x run
, it automatically rebuilds and runs on any change so by the time I switch to the terminal it's almost completely ready.I can imagine this to tank my PC performance, especially on large projects lol