1

编译项目时,cargo 会自动下载 Cargo.toml 中指定的需求,以 git-repository 的形式给出。

例如

[dependencies.piston]
git = "https://github.com/PistonDevelopers/piston"

将导致

Updating git repository 'https://github.com/PistonDevelopers/opengl_graphics'

编译时。它将这些存储库保存在我的磁盘上的什么位置?我正在使用 Windows,这会改变什么吗?

4

1 回答 1

3

man cargo给出:

FILES
       ~/.cargo
              Directory  in which Cargo stores repository data. Cargo can
              be instructed to use a .cargo subdirectory in  a  different
              location by setting the CARGO_HOME environment variable.

一个发现git grephttps://github.com/rust-lang/cargo/blob/3533ff11c505017751d1e466685efe7084cbd96b/src/cargo/util/config.rs#L380-L384CARGO_HOME

它使用http://doc.rust-lang.org/nightly/std/os/fn.homedir.html

于 2015-01-21T17:14:57.333 回答