Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Sep 2018 18:47:26 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480877 - head/Mk/Uses
Message-ID:  <201809281847.w8SIlQfg019895@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Fri Sep 28 18:47:25 2018
New Revision: 480877
URL: https://svnweb.freebsd.org/changeset/ports/480877

Log:
  Bump minimum Rust version in Mk/Uses/cargo.mk
  
  Given that at least ripgrep will soon require Rust >= 1.28.0 [1]
  and given the recently discovered buffer overflow vulnerability in
  the standard library of Rust < 1.29.1 [2] bump it to 1.29.1 to avoid
  surprises.
  
  [1] https://github.com/BurntSushi/ripgrep/issues/1019
  [2] https://groups.google.com/forum/#!topic/rustlang-security-announcements/CmSuTm-SaU0

Modified:
  head/Mk/Uses/cargo.mk

Modified: head/Mk/Uses/cargo.mk
==============================================================================
--- head/Mk/Uses/cargo.mk	Fri Sep 28 18:27:06 2018	(r480876)
+++ head/Mk/Uses/cargo.mk	Fri Sep 28 18:47:25 2018	(r480877)
@@ -46,7 +46,7 @@ DISTFILES+=	${CARGO_DIST_SUBDIR}/${_crate}.tar.gz:carg
 
 CARGO_BUILDDEP?=	yes
 .if ${CARGO_BUILDDEP:tl} == "yes"
-BUILD_DEPENDS+=	 rust>=1.19.0_2:lang/rust
+BUILD_DEPENDS+=	 rust>=1.29.1:lang/rust
 .endif
 
 # Location of cargo binary (default to lang/rust's Cargo binary)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809281847.w8SIlQfg019895>