Rust 常用命令

安装

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
上一篇:rust 使用国内镜像,快速安装方法


下一篇:Windows任务管理器远比想象中的复杂