本文阅读量 次
1. Cargo 概述¶
Cargo 是 Rust 自带的包管理的工具,类似于 Python 中的 PIP, Java 中的 Maven, JS 中的 NPM 。方便开发者管理依赖,发布安装包等操作
1.1 Cargo 相关环境变量¶
名称 | 默认值 | 说明 | 备注 |
---|---|---|---|
CARGO_HOME | |||
CARGO_TARGET_DIR | |||
RUSTUP_HOME |
1.2 Cargo 依赖¶
1.2.1 根据平台引入依赖¶
[target.'cfg(windows)'.dependencies]
winhttp = "0.4.0"
[target.'cfg(unix)'.dependencies]
openssl = "1.0.1"
[target.'cfg(target_arch = "x86")'.dependencies]
native = { path = "native/i686" }
[target.'cfg(target_arch = "x86_64")'.dependencies]
native = { path = "native/x86_64" }
1.3 常用命令¶
1.4 常用场景¶
1.5 常见问题¶
执行 cargo 命令时,总是报错 "Blocking waiting for file lock on package cache
解决办法 * xxx * yyy