-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
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
Can't install ripgrep_all with cargo from crates #67
Comments
Agree, has anyone found a fix for it? |
I was having trouble installing
|
Same issue with nightly. |
For anyone wondering, this is caused by At the time of writing, the master branch depends on two nightly-only features, at least one of which (specialization) is probably a ways off of stabilizing, so it could be a while before this crate can be installed using the stable toolchain. Provided the project continues to rely on those features, of course. TL;DR: Installing from crates.io will not work until a new version is published. Installing via git using the nightly compiler is the only option for now. Bonus info: it seems like Cargo's error message will soon be more explicit when you try to install a crate that depends on a yanked crate. |
If you use |
I did some research. https://doc.rust-lang.org/cargo/commands/cargo-install.html#description says that
And also https://stackoverflow.com/questions/68509895/what-does-package-foo-in-cargo-lock-is-yanked-in-registry-mean . So, the conclusion for the time being seems to be using:
|
@blueray453 thx, I meet the same problem and use |
Same here |
None of the options here seem to work for me. Using the nightly build (or master from git) I get a bunch of compilation errors--things like mismatched types. using
using
|
Unfortunately the latest commit has a compilation error, but I was able to install from the Oct 26 commit that upgraded the dependencies:
|
Master does not contain a working version regardless of if it compiles or not while I'm migrating the code base to async (most of the code is disabled). The last working version is 0.9.6. Install via the released binary or using |
@phiresky thanks, I wanted to install a newer version because of #113, but I understand why you wouldn't want people to use code you don't consider ready and then wonder why it's not working as it should. I checked and |
I tried to update
ripgrep_all
, but it failed on what appears to be a dependency issue. If this has been resolved onmaster
, it’s probably worth cutting a new version to crates.io that fixes this.The text was updated successfully, but these errors were encountered: