Rust笔记(一) 安装
安装
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
更新
rustup update
卸载
rustup self uninstall
编译
rustc xxx.rs
命名规范
snake_case
: 文件名
CamelCase
:
Cargo
cargo 是rust的构建系统和包管理工具。
创建项目
cargo new xxx # 创建二进制项目
cargo new xxx --lib # 创建库项目
安装依赖
cargo install xxxx
编译
cargo build
cargo build --release
运行
cargo run
tests
cargo test
检查
检查代码,cargo check
比cargo build
运行时间快的多
cargo check
panic 中断
Cargo.toml
[profile.release]
panic = 'abort'
使用外部package
在 Cargo.toml的
[dependencies]
添加package
cargo 换源
.cargo/config
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
replace-with = 'tuna'
[source.tuna]
registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git"
[net]
git-fetch-with-cli = true