We're using workspace in our private enterprise project and the cargo install
doesn't work anymore.
found a virtual manifest at `path/Cargo.toml` instead of a package manifest
Using cargo install *
or cargo install --path *
doesn't work either.
error: could not find `Cargo.lock` in /mnt/c/Imeka/diffima/subproject1
... repeat N times for other projects ...
Summary Failed to install subproject1, Cargo.lock, Cargo.toml, ...
We do not use the simple bin/ and lib/ division, but a star pattern, all leading to a core lib. I understand that I can use
cargo install --path subproject1
cargo install --path subproject2
...
but it was more pleasant to type: cargo install
and that's it. Is there a way to install all binaries in a workspace project?