svn commit: r480877 - head/Mk/Uses

Tobias Kortkamp tobik at FreeBSD.org
Fri Sep 28 18:47:27 UTC 2018


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)


More information about the svn-ports-all mailing list