commit 0f71e1588f85775c4dd827600a47368a87225376
parent 96f03df38c0ea34dcc34552a9e9e0d3c8f518c13
Author: Mike Hommey <mh+mozilla@glandium.org>
Date: Tue, 21 Oct 2025 22:57:52 +0000
Bug 1995455 - Adjust mozglue build script for up to rustc 1.90. r=firefox-build-system-reviewers,ahochheiden
Differential Revision: https://phabricator.services.mozilla.com/D269325
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mozglue/static/rust/build.rs b/mozglue/static/rust/build.rs
@@ -16,10 +16,10 @@ fn main() {
println!("cargo:rerun-if-changed=wrappers.cpp");
let ver = version().unwrap();
- let max_oom_hook_version = Version::parse("1.90.0-alpha").unwrap();
+ let max_oom_hook_version = Version::parse("1.91.0-alpha").unwrap();
// The new alloc error panic feature was temporarily reverted. We kept the
// code in tree, but the version here is such that it's effectively never used.
- let max_alloc_error_panic_version = Version::parse("1.90.0-alpha").unwrap();
+ let max_alloc_error_panic_version = Version::parse("1.91.0-alpha").unwrap();
println!("cargo::rustc-check-cfg=cfg(has_panic_hook_info)");
println!("cargo::rustc-check-cfg=cfg(oom_with, values(\"hook\", \"alloc_error_panic\"))");