pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/rust



Module Name:    pkgsrc
Committed By:   pin
Date:           Fri Jul  1 06:58:18 UTC 2022

Modified Files:
        pkgsrc/lang/rust: rust.mk

Log Message:
lang/rust: Bump minimum version to 1.56.1

By now a large number of Rust projects have migrated to edition = 2021, which
requires Rust >= 1.56.

Some projects still using edition = 2018 could, technically build with 1.20.
But, since several libs have also adopted edition = 2021, many would fail while
building dependencies.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/rust/rust.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/rust/rust.mk
diff -u pkgsrc/lang/rust/rust.mk:1.7 pkgsrc/lang/rust/rust.mk:1.8
--- pkgsrc/lang/rust/rust.mk:1.7        Wed Oct 14 08:23:49 2020
+++ pkgsrc/lang/rust/rust.mk    Fri Jul  1 06:58:18 2022
@@ -1,4 +1,4 @@
-# $NetBSD: rust.mk,v 1.7 2020/10/14 08:23:49 triaxx Exp $
+# $NetBSD: rust.mk,v 1.8 2022/07/01 06:58:18 pin Exp $
 #
 # This file determines the type of rust package to use.
 #
@@ -22,7 +22,7 @@
 # RUST_REQ
 #      The minimum version of Rust required by the package.
 #
-#      Default: 1.20.0
+#      Default: 1.56.1
 #
 # RUST_RUNTIME
 #      Whether rust is a runtime dependency.
@@ -33,7 +33,7 @@
 
 .include "../../mk/bsd.fast.prefs.mk"
 
-RUST_REQ?=     1.20.0
+RUST_REQ?=     1.56.1
 RUST_RUNTIME?= no
 
 RUST_TYPE?=    src



Home | Main Index | Thread Index | Old Index