I have a cargoPublish configured in a monorepo with multiple Rust crates, where A depends on B. When running
the publish effect, I want B to be published first, otherwise publishing A would falis.
I know that cargo workspaces would be a solution, but in our architecture this is not an option.
Is there a way to sequence effects somehow?
I have a
cargoPublishconfigured in a monorepo with multiple Rust crates, where A depends on B. When runningthe publish effect, I want B to be published first, otherwise publishing A would falis.
I know that cargo workspaces would be a solution, but in our architecture this is not an option.
Is there a way to sequence effects somehow?