You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In one of my projects, I have a subdirectory that refers to its parent directory with path = ".." when building locally. The relevant line of Cargo.toml looks like this:
blake3 = { version = "1", path = "..", features = ["rayon"] }
This seems to confuse cargo outdated -R:
$ git clone https://github.com/BLAKE3-team/BLAKE3
$ cd BLAKE3/b3sum
$ cargo outdated
All dependencies are up to date, yay!
$ cargo outdated -R
error: failed to parse manifest at `/tmp/cargo-outdatedsaTTC8/Cargo.toml`
Caused by:
feature `neon` includes `blake3/neon`, but `blake3` is not a dependency
If I remove the path field from Cargo.toml, this error goes away. I vaguely remember this working in the past, but I'm having trouble bisecting it, as other recent versions seem to produce an error: failed to select a version for the requirement clap = "^4.0.8" that I don't really understand.
The text was updated successfully, but these errors were encountered:
In one of my projects, I have a subdirectory that refers to its parent directory with
path = ".."
when building locally. The relevant line ofCargo.toml
looks like this:This seems to confuse
cargo outdated -R
:If I remove the
path
field fromCargo.toml
, this error goes away. I vaguely remember this working in the past, but I'm having trouble bisecting it, as other recent versions seem to produce anerror: failed to select a version for the requirement clap = "^4.0.8"
that I don't really understand.The text was updated successfully, but these errors were encountered: