You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a top-level Cargo.toml containing the a single value in the default-members key, then invoking cargo run will build and run that crate in place of the top-level crate.
[workspace]
members = ["foo", "bar"]
default-members = ["foo"]
Invoking cargo apk run currently tries to build and run the top-level crate (i.e. the workspace itself), which in my case doesn't actually contain any executables.
Is it possible for cargo apk to take note of default-members in the future?
The text was updated successfully, but these errors were encountered:
Given a top-level Cargo.toml containing the a single value in the
default-members
key, then invokingcargo run
will build and run that crate in place of the top-level crate.Invoking
cargo apk run
currently tries to build and run the top-level crate (i.e. the workspace itself), which in my case doesn't actually contain any executables.Is it possible for
cargo apk
to take note ofdefault-members
in the future?The text was updated successfully, but these errors were encountered: