about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-09-30 12:56:02 +0200
committerAndreas Rammhold <andreas@rammhold.de>2018-10-03 16:26:48 +0200
commitaef6830d3e59d554dea2cb96c07326922cffe416 (patch)
treee043900d5003d8da96abeab24d86a0d512d3d66e
parent2d759f2b0a67908b758473c2213c32a4f396b437 (diff)
downloadnixlib-aef6830d3e59d554dea2cb96c07326922cffe416.tar
nixlib-aef6830d3e59d554dea2cb96c07326922cffe416.tar.gz
nixlib-aef6830d3e59d554dea2cb96c07326922cffe416.tar.bz2
nixlib-aef6830d3e59d554dea2cb96c07326922cffe416.tar.lz
nixlib-aef6830d3e59d554dea2cb96c07326922cffe416.tar.xz
nixlib-aef6830d3e59d554dea2cb96c07326922cffe416.tar.zst
nixlib-aef6830d3e59d554dea2cb96c07326922cffe416.zip
rustc: 1.29.0 -> 1.29.1
From the changelog:

- The standard library's `str::repeat` function contained an out of bounds write
  caused by an integer overflow. This has been fixed by deterministically
  panicking when an overflow happens.
-rw-r--r--pkgs/development/compilers/rust/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix
index 47415ac9177b..7d785093f9b3 100644
--- a/pkgs/development/compilers/rust/default.nix
+++ b/pkgs/development/compilers/rust/default.nix
@@ -6,11 +6,11 @@
 
 let
   rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
-  version = "1.29.0";
-  cargoVersion = "1.29.0";
+  version = "1.29.1";
+  cargoVersion = "1.29.1";
   src = fetchurl {
     url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
-    sha256 = "1sb15znckj8pc8q3g7cq03pijnida6cg64yqmgiayxkzskzk9sx4";
+    sha256 = "0jd3c57x3yndizns4pb68nh25si47agfmrdvf9nwwsyfcs5p5c7i";
   };
 in rec {
   rustc = callPackage ./rustc.nix {