Function semantic_release_cargo::list_packages_with_arguments

source ยท
pub fn list_packages_with_arguments(
    output: impl Write,
    alternate_registry: Option<&str>,
    manifest_path: Option<impl AsRef<Path>>,
) -> Result<()>
Expand description

List the packages from the workspace in the order of their dependencies as matched against an argument set.

The list of packages will be written to output. If manifest_path is provided then it is expected to give the path to the Cargo.toml file for the root of the workspace. If manifest_path is None then list_packages will look for the root of the workspace in a Cargo.toml file in the current directory.

This is a debuging aid and does not directly correspond to a semantic release step.