Open
Description
Describe the problem you are trying to solve
I have a package with several crates and "virtual" Cargo.toml
(virtual manifest). I would like to execute some code before building this package or any containing crate. Currently it isn't allowed to have build.rs
in the virtual manifest.
Describe the solution you'd like
Allow the build
field to appear in the virtual manifest.
Notes
As a workaround I have created an empty crate with build.rs and made all other crates depend on it.