fixing stblib loading

This commit is contained in:
bruno-ortiz 2022-02-25 21:53:47 -03:00 committed by Bruno Ortiz
parent d01fc6405b
commit f8215dd426

View File

@ -79,7 +79,8 @@ export class RustDependenciesProvider
const deps = crates.map((crate) => { const deps = crates.map((crate) => {
const dep = this.toDep(crate.name, crate.version, crate.path); const dep = this.toDep(crate.name, crate.version, crate.path);
this.dependenciesMap[dep.dependencyPath.toLowerCase()] = dep; this.dependenciesMap[dep.dependencyPath.toLowerCase()] = dep;
return dep; this.dependenciesMap[stdlib.dependencyPath.toLowerCase()] = stdlib;
return dep;
}); });
return deps; return deps;
} }