meta-rust / cargo-bitbake

cargo extension that can generate BitBake recipes utilizing the classes from meta-rust
Apache License 2.0
83 stars 57 forks source link

Virtual manifests are not handled #65

Open Phidelux opened 1 year ago

Phidelux commented 1 year ago

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.