rust怎么看伤害
发布网友
发布时间:2022-04-25 19:47
我来回答
共1个回答
热心网友
时间:2022-04-23 14:40
rust查看上海可以使用指令combatlog。
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