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