pub trait LayeredTopologicalSort {
// Required method
fn layered_topological_order_crate_names<'life0, 'life1, 'async_trait>(
&'life0 self,
config: &'life1 TopologicalSortConfig,
) -> Pin<Box<dyn Future<Output = Result<Vec<Vec<String>>, WorkspaceError>> + Send + 'async_trait>>
where 'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
}Expand description
Trait for returning a layered topological ordering of all crates in the target.