thesnowmancometh
9/15/2018 - 5:24 AM

Rust Command Line

Common commands for working with Rust

# 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