Rust tooling
Rustc
Rustc handles Rust compilation src_shell{rustc main.rs}
Cargo
Cargo is Rust’s build system and package manager
Cargo commands
Create project
cargo new hello_cargoBuild project
cargo buildBuild & run project
cargo runBacktrace
When you want to see an error backtrace set the RUST_BACKTRACE environment variable:
RUST_BACKTRACE=1 cargo runCheck code
cargo checkBuild for release
cargo build --releaseCargo.toml
[package]
name = "hello_cargo"
version = "0.1.0"
authors = ["Your Name <[email protected]>"]
edition = "2018"
[dependencies]