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
Problem
What I did:
I tried running the command:
cargo install --git https://github.com/ZcashFoundation/zebra --branch main
But I got the error:
Updating git repository `https://github.com/ZcashFoundation/zebra` error: multiple packages with binaries found: zebra-utils, zebrad
I tried:
--bin zebrad
--bins
default-members
zebra-utils
Then I found the correct command syntax in #7194:
cargo install --git https://github.com/ZcashFoundation/zebra --branch main zebrad
Steps
cargo install --git https://github.com/ZcashFoundation/zebra --rev 65e38b3c74eb06b14939448e368848f8ff0598b1
Possible Solution(s)
Here's what I expected:
multiple packages with binaries found
Notes
Output of cargo version:
cargo version
cargo 1.45.1
Output of uname -a:
uname -a
Linux ... 5.4.75 #1-NixOS SMP Thu Nov 5 10:43:38 UTC 2020 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
Closing as a duplicate of #4830. These all sound like reasonable suggestions to me, though.
Sorry, something went wrong.
cargo install --git
No branches or pull requests
Problem
What I did:
I tried running the command:
But I got the error:
I tried:
--bin zebrad
--bins
default-members
in the workspace Cargo.toml to excludezebra-utils
Then I found the correct command syntax in #7194:
Steps
cargo install --git https://github.com/ZcashFoundation/zebra --rev 65e38b3c74eb06b14939448e368848f8ff0598b1
Possible Solution(s)
Here's what I expected:
--bin zebrad
should install the binary with that name, if there are multiple packages with binaries--bins
should install all binaries, if there are multiple packages with binariesdefault-members
, that binary should be installedmultiple packages with binaries found
error should give users a hint about how to specify a single crateNotes
Output of
cargo version
:Output of
uname -a
:The text was updated successfully, but these errors were encountered: