Created
September 15, 2018 05:24
-
-
Save RobbieMcKinstry/1b12d014a60761bf711d44fe7732dc9c to your computer and use it in GitHub Desktop.
Common commands for working with Rust
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Type and borrow check your code without generating the binary. | |
# This will dramatically speed up compilation since it doesn't | |
# produce a binary | |
cargo check | |
# Run your tests | |
cargo test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment