summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/languages-frameworks/rust.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/rust.section.md b/doc/languages-frameworks/rust.section.md
index 76ac7b6cb2d2..4ba556c69d5a 100644
--- a/doc/languages-frameworks/rust.section.md
+++ b/doc/languages-frameworks/rust.section.md
@@ -903,8 +903,8 @@ with import <nixpkgs>
};
let
rustPlatform = makeRustPlatform {
- cargo = rust-bin.stable.latest.minimal;
- rustc = rust-bin.stable.latest.minimal;
+ cargo = rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
+ rustc = rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
};
in