-
Linux 安装
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 或
# curl -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env
# 或 vim ~/.bash_profile
# 添加如下内容
# export PATH="$HOME/.cargo/bin:$PATH"
- rust 版本
rustc --version
- rust 更新
rustup update
- rustc 编译
rustc main.rs
- cargo 版本
cargo --version
- cargo 创建项目
cargo new cargo_egui
- cargo 构建(编译)
cargo build
- cargo 在优化模式下构建(编译)并生成可执行文件
cargo build --release
- cargo 构建(编译)、运行
cargo run
- 快速检查当前的代码是否可以通过编译,而不需要花费额外的时间去真正生成可执行程序
cargo check
- 文档
rustup doc