Skip to navigation
How to run the rust compiler when the source code get changed
22.06.23
Cargo Watch watches over your project's source for changes, and runs Cargo commands when they occur. ```console # Run tests only $ cargo watch -x test # Run check then tests $ cargo watch -x check -x test # Run run with arguments $ cargo watch -x 'run -- --some-arg' # Run an arbitrary command $ cargo watch -- echo Hello world # Run with features passed to cargo $ cargo watch --features "foo,bar" ```
https://docs.rs/crate/cargo-watch/latest
Reply
Anonymous
Information Epoch 1732427237
Using text data files.
Home
Notebook
Contact us