From 755b935b4d7b484caa4193b486811c811d7c0b74 Mon Sep 17 00:00:00 2001 From: Chris Manchester Date: Tue, 11 Feb 2020 19:10:05 +0000 Subject: [PATCH] Bug 1605188 - Bump oom hook version for rustc 1.41.0. r=froydnj Depends on D61042 Differential Revision: https://phabricator.services.mozilla.com/D62365 --HG-- extra : moz-landing-system : lando --- toolkit/library/rust/shared/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/library/rust/shared/build.rs b/toolkit/library/rust/shared/build.rs index 2855bf13de3e..5de79f3caf0f 100644 --- a/toolkit/library/rust/shared/build.rs +++ b/toolkit/library/rust/shared/build.rs @@ -9,7 +9,7 @@ use rustc_version::{version, Version}; fn main() { let ver = version().unwrap(); let mut bootstrap = false; - let max_oom_hook_version = Version::parse("1.41.0-alpha").unwrap(); + let max_oom_hook_version = Version::parse("1.42.0-alpha").unwrap(); if ver >= Version::parse("1.28.0-alpha").unwrap() && ver < max_oom_hook_version { println!("cargo:rustc-cfg=feature=\"oom_with_hook\"");