cargo-bitbake icon indicating copy to clipboard operation
cargo-bitbake copied to clipboard

Virtual manifests are not handled

Open Phidelux opened this issue 2 years ago • 1 comments

I have a simple project consisting of a core library, the main package and a helper script:

project
|- Cargo.toml
|- lib
   |- Cargo.toml
|- pkg1
   |- Cargo.toml
|- pkg2
   |- Cargo.toml

The root Cargo.toml is virtual, meaning it only defines the workspace members:

[workspace]
members = ["lib", "pkg1", "pkg2"]

I would expect cargo-bitbake to generate a bitbake recipe including the dependencies for all three packages.

Thanks.

Phidelux avatar Apr 19 '23 12:04 Phidelux