Sort rust dependencies in tree view
This commit is contained in:
parent
e461e53f01
commit
06cfeb47b2
@ -89,6 +89,8 @@ export class RustDependenciesProvider
|
||||
const dep = this.toDep(crate.name || "unknown", crate.version || "", crate.path);
|
||||
this.dependenciesMap[dep.dependencyPath.toLowerCase()] = dep;
|
||||
return dep;
|
||||
}).sort((a, b) => {
|
||||
return a.label.localeCompare(b.label)
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user