Skip to main content

DependencyGraphProvider

Trait DependencyGraphProvider 

Source
pub trait DependencyGraphProvider: Send + Sync {
    // Required method
    fn build_dependency_graph(
        &self,
        project: &CargoProject,
    ) -> Result<WorkspaceDependencyGraph>;
}

Required Methods§

Source

fn build_dependency_graph( &self, project: &CargoProject, ) -> Result<WorkspaceDependencyGraph>

§Errors

Returns an error if the dependency graph cannot be built from the project manifests.

Implementors§