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
Cargo recently got support for renaming dependencies. That is, you can do:
cargo-features = ["rename-dependency"]
# ...
[dependencies]
bar = { version = "0.1", package = "foo" }
To import the crate foo under the name bar. However, this seems to confuse cargo-outdated. Specifically, it looks for bar instead of foo in the registry, which generally won't exist.
The text was updated successfully, but these errors were encountered:
Cargo recently got support for renaming dependencies. That is, you can do:
To import the crate
foo
under the namebar
. However, this seems to confusecargo-outdated
. Specifically, it looks forbar
instead offoo
in the registry, which generally won't exist.The text was updated successfully, but these errors were encountered: