From 139bdbb0387b678f738877705833d0b0e0c7ff4f Mon Sep 17 00:00:00 2001 From: Vasiliy Yorkin Date: Tue, 21 Sep 2021 17:25:17 +0300 Subject: [PATCH] Update nightly toolchain to 2021-06-17 (#240) * Update nightly toolchain to 2021-06-17 * Update shell.nix Co-authored-by: Dan Shields <35669742+NukeManDan@users.noreply.github.com> --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 9f3f563..17cae78 100644 --- a/shell.nix +++ b/shell.nix @@ -13,7 +13,7 @@ let rev = "1fe6ed37fd9beb92afe90671c0c2a662a03463dd"; }; nixpkgs = import pinned { overlays = [ mozillaOverlay ]; }; - toolchain = with nixpkgs; (rustChannelOf { date = "2021-03-01"; channel = "nightly"; }); + toolchain = with nixpkgs; (rustChannelOf { date = "2021-07-06"; channel = "nightly"; }); rust-wasm = toolchain.rust.override { targets = [ "wasm32-unknown-unknown" ]; };