Skip to content

Commit 5c37ebc

Browse files
Bug 1917744 - Adjust mozglue build script for rustc 1.83. r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D221463
1 parent d401966 commit 5c37ebc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mozglue/static/rust/build.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ fn main() {
1616
println!("cargo:rerun-if-changed=wrappers.cpp");
1717

1818
let ver = version().unwrap();
19-
let max_oom_hook_version = Version::parse("1.83.0-alpha").unwrap();
19+
let max_oom_hook_version = Version::parse("1.84.0-alpha").unwrap();
2020
// The new alloc error panic feature was temporarily reverted. We kept the
2121
// code in tree, but the version here is such that it's effectively never used.
22-
let max_alloc_error_panic_version = Version::parse("1.83.0-alpha").unwrap();
22+
let max_alloc_error_panic_version = Version::parse("1.84.0-alpha").unwrap();
2323

2424
if ver >= Version::parse("1.80.0-alpha").unwrap() {
2525
println!("cargo::rustc-check-cfg=cfg(has_panic_hook_info)");

0 commit comments

Comments
 (0)