We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used cargo to install xsv.
cargo install xsv
After a few lookup i found that cargo stores some metadata in .crates2.json & .crates.toml. I looked for those files and found them in $HOME.
.crates2.json
.crates.toml
$HOME
Is $HOME the right directory for them? I thought they will be stored in $CARGO_HOME.
$CARGO_HOME
Output of cargo version: 1.51.0
cargo version
The text was updated successfully, but these errors were encountered:
The default should be $CARGO_HOME. There are several overrides, so maybe check that any of them are not set? They are described at https://doc.rust-lang.org/cargo/commands/cargo-install.html
Sorry, something went wrong.
I wanted cargo to store binaries in ~/bin and to do that i set install.root to my home directory.
~/bin
install.root
As .crates2.json & .crates.toml are stored in home directory this tells cargo store them in install.root.
But I don't see any statements on this files and where they will be stored in https://doc.rust-lang.org/cargo/commands/cargo-install.html
Yea, that could definitely be made clearer. There is a brief mention in --no-track, but that is pretty obscure.
--no-track
6b6b0b4
Successfully merging a pull request may close this issue.
I used cargo to install xsv.
After a few lookup i found that cargo stores some metadata in
.crates2.json
&.crates.toml
. I looked for those files and found them in$HOME
.Is
$HOME
the right directory for them? I thought they will be stored in$CARGO_HOME
.Output of
cargo version
: 1.51.0The text was updated successfully, but these errors were encountered: