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 bitbake has trouble parsing a workspace Cargo.toml (root).
error: failed to parse manifest at `.../Cargo.toml`
Caused by:
feature `resolver` is required
this Cargo does not support nightly features, but if you
switch to nightly channel you can add
`cargo-features = ["resolver"]` to enable this feature
Adding cargo-features = ["resolver"] and moving to nightly still ends in failure.
This is from the root of a project with many packages. The root Cargo.toml looks something like this:
So the resolved object returns for all the non-git crates. For some reason it doesn't include git crate deps. So querying the git Cargo.toml crates and appending to the base resolved list gets all of the dependencies.
The project I'm currently working with has nearly 800 crates. I'll work on a PR the next week or so.
cargo bitbake
has trouble parsing a workspace Cargo.toml (root).Adding
cargo-features = ["resolver"]
and moving to nightly still ends in failure.This is from the root of a project with many packages. The root Cargo.toml looks something like this:
The text was updated successfully, but these errors were encountered: