Bug 1371366 - mozboot: Install rust 1.18.0. r?froydnj draft
authorRalph Giles <giles@mozilla.com>
Wed, 07 Jun 2017 14:57:55 -0700
changeset 591163 0fcf84f7589030300cdfce8f80cafb2f7b2655a8
parent 591094 e61060be36424240058f8bef4c5597f401bc8b7e
child 591169 781e7e83c3b87928cc519c592c370d53406ffd3f
child 591202 240168722100ba8f66fdb622ccc9a803c9052cd1
push id62977
push userbmo:giles@thaumas.net
push dateThu, 08 Jun 2017 18:26:39 +0000
reviewersfroydnj
bugs1371366
milestone55.0a1
Bug 1371366 - mozboot: Install rust 1.18.0. r?froydnj This version offers a 15-20% improvement to compilation speed, so we will likely require it for developers soon. Begin installing it now to reduce the frequence of double migrations. MozReview-Commit-ID: JZRssgOjkF7
python/mozboot/mozboot/base.py
--- a/python/mozboot/mozboot/base.py
+++ b/python/mozboot/mozboot/base.py
@@ -157,17 +157,17 @@ ac_add_options --enable-artifact-builds
 # This should match OLDEST_NON_LEGACY_VERSION from
 # the hg setup wizard in version-control-tools.
 MODERN_MERCURIAL_VERSION = LooseVersion('3.7.3')
 
 # Upgrade Python older than this.
 MODERN_PYTHON_VERSION = LooseVersion('2.7.3')
 
 # Upgrade rust older than this.
-MODERN_RUST_VERSION = LooseVersion('1.17.0')
+MODERN_RUST_VERSION = LooseVersion('1.18.0')
 
 class BaseBootstrapper(object):
     """Base class for system bootstrappers."""
 
     def __init__(self, no_interactive=False):
         self.package_manager_updated = False
         self.no_interactive = no_interactive
         self.stylo = False