I have heard cargo has the ability to automatically recompile changed source files, but I'm having a hard time figuring out how to tell it to do so.
For now, I am manually running cargo build
or cargo run
every time I want to type check my code. I would prefer to instead simply save the file and see the results in the neighboring terminal window.
In case you still have no idea what I'm talking about, I'm looking for the cargo equivalent of sbt ~compile
or sbt ~run
.
It seems strangely hard to find, so I'm starting to wonder if it's really supported. It's possible someone had said cargo could detect changed files and recompile them when what he meant to say was that cargo could detect unchanged files and avoid recompiling them, like make
.