cargo-bitbake
cargo-bitbake copied to clipboard
Virtual manifests are not handled
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.