安装
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
查看版本
rustc --version
升级
rustup update
卸载
$ rustup self uninstall
查看cargo 版本
cargo --version
新建项目
cargo new hello_cargo
构建项目
cargo build
cargo build --release //打包生产环境
运行项目
cargo run
检查项目代码
cargo check