This is an old revision of the document!
Rust cheatlist
Cargo
cargo build
: Build program without optimizations. Output is stored in ./target/debug.cargo build –release
: Build program with runtime optimizations. Output is stored in ./target/release.