We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e461e53 commit 06cfeb4Copy full SHA for 06cfeb4
editors/code/src/dependencies_provider.ts
@@ -89,6 +89,8 @@ export class RustDependenciesProvider
89
const dep = this.toDep(crate.name || "unknown", crate.version || "", crate.path);
90
this.dependenciesMap[dep.dependencyPath.toLowerCase()] = dep;
91
return dep;
92
+ }).sort((a, b) => {
93
+ return a.label.localeCompare(b.label)
94
});
95
}
96
0 commit comments