如何更改`cargo install`放置二进制文件的位置?

时间:2017-03-30 05:52:24

标签: rust rust-cargo

我正在安装racer,rustfmt& rustsym

cargo install racer
cargo install rustfmt
cargo install rustsym

正在C:\Users\<UserName>\.cargo安装软件包,但我希望它是C:\Rust\.cargo

1 个答案:

答案 0 :(得分:1)

最简单的方法是通过--root

cargo install --root C:\Rust.cargo racer

CARGO_HOME和其他人也可以设置为覆盖它。请参阅文档或How can the location of cargo's configuration directory be overridden?