安装
- 安装 rustup 命令行工具
# 下载脚本
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
# 修改环境变量
source $HOME/.cargo/env
# 查看版本
rustup --version
rustc --version
使用
- 单文件输出 Hello World
vi hello.rs
fn main() {
println!("hello rust")
}
rustc hello.rs -o hello
./hello
包管理
- 使用 cargo
# 查看版本
cargo --version
# 新建一个包
cargo new demo
cd demo
# 编译
cargo build
# 运行
cargo run
# 检测
cargo check
# 发布
cargo build --release