其他分享
首页 > 其他分享> > Rust 常用命令

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

标签:cargo,rustup,--,version,build,https,常用命令,Rust
来源: https://blog.csdn.net/qq_33325899/article/details/110119545