2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/_rust/Cargo

19 lines
354 B
Plaintext
Raw Normal View History

2019-08-02 12:46:07 +00:00
// Using the Cargo package manager
// See also: https://doc.rust-lang.org/cargo/
// Create a new package with Cargo
cargo new hello_world
// Build a package with Cargo
cargo build
// Build and run a package with Cargo
cargo run
// Build a package with Cargo for release
cargo build --release
// Clean all output build files and targets
cargo clean