about summary refs log tree commit diff
diff options
context:
space:
mode:
authorarcnmx <arcnmx@users.noreply.github.com>2019-07-27 22:35:44 -0700
committerarcnmx <arcnmx@users.noreply.github.com>2019-07-27 23:46:01 -0700
commite84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4 (patch)
treef74b11eb727a8242df237f2f803f1b3ba292f952
parentb5590fff46b85fec36ceac6a84b29b4c4eb8c3f7 (diff)
downloadnixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.tar
nixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.tar.gz
nixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.tar.bz2
nixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.tar.lz
nixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.tar.xz
nixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.tar.zst
nixlib-e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4.zip
rls: 1.35.0 -> 1.36.0
-rw-r--r--pkgs/development/tools/rust/rls/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/rls/default.nix b/pkgs/development/tools/rust/rls/default.nix
index 0427eadea195..22374d2bbe77 100644
--- a/pkgs/development/tools/rust/rls/default.nix
+++ b/pkgs/development/tools/rust/rls/default.nix
@@ -5,16 +5,16 @@
 rustPlatform.buildRustPackage rec {
   pname = "rls";
   # with rust 1.x you can only build rls version 1.x.y
-  version = "1.35.0";
+  version = "1.36.0";
 
   src = fetchFromGitHub {
     owner = "rust-lang";
     repo = pname;
     rev = version;
-    sha256 = "1l3fvlgfzri8954nbwqxqghjy5wa8p1aiml12r1lqs92dh0g192f";
+    sha256 = "1mclv0admxv48pndyqghxc4nf1amhbd700cgrzjshf9jrnffxmrn";
   };
 
-  cargoSha256 = "0v96ndys6bv5dfjg01chrqrqjc57qqfjw40n6vppi9bpw0f6wkf5";
+  cargoSha256 = "1yli9540510xmzqnzfi3p6rh23bjqsviflqw95a0fawf2rnj8sin";
 
   # a nightly compiler is required unless we use this cheat code.
   RUSTC_BOOTSTRAP=1;