summaryrefslogtreecommitdiff
path: root/relax-cargo-dep.patch
diff options
context:
space:
mode:
Diffstat (limited to 'relax-cargo-dep.patch')
-rw-r--r--relax-cargo-dep.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/relax-cargo-dep.patch b/relax-cargo-dep.patch
new file mode 100644
index 0000000..f83558c
--- /dev/null
+++ b/relax-cargo-dep.patch
@@ -0,0 +1,11 @@
+--- a/build/moz.configure/rust.configure
++++ b/build/moz.configure/rust.configure
+@@ -168,7 +168,7 @@
+ rustc_min_version = Version("1.47.0")
+ else:
+ rustc_min_version = Version(MINIMUM_RUST_VERSION)
+- cargo_min_version = rustc_min_version
++ cargo_min_version = Version("1.46.0")
+
+ version = rustc_info.version
+ is_nightly = "nightly" in version.version
bgstack15