From ff6759bb29131fdbfc8447e5b9a636e538422187 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 18 Apr 2020 17:07:58 -0400 Subject: [PATCH] bump rust version --- nix/rust.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/rust.nix b/nix/rust.nix index ee79d28..19faf03 100644 --- a/nix/rust.nix +++ b/nix/rust.nix @@ -4,13 +4,13 @@ let pkgs = import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; }; in (pkgs.rustChannelOf { - date = "2020-03-25"; + date = "2020-04-08"; channel = "nightly"; }).rust.override { extensions = [ "rust-src" "rust-analysis" - # "rls-preview" - # "rustfmt-preview" + "rls-preview" + "rustfmt-preview" ]; }