Skip to content

Commit d5acddf

Browse files
committed
always add rust-std for the default target
1 parent fa41fb2 commit d5acddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/languages/rust.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ in
212212

213213
packages = [
214214
(combine "rust-mixed" (
215-
(map (c: cfg.toolchain.${c}) cfg.components) ++
215+
(map (c: cfg.toolchain.${c}) (cfg.components ++ [ "rust-std" ])) ++
216216
(map (t: toolchain._components.${t}.rust-std) cfg.targets)
217217
))
218218
];

0 commit comments

Comments
 (0)