We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdcb528 commit aacb497Copy full SHA for aacb497
Cargo.toml
@@ -77,6 +77,13 @@ overflow-checks = false
77
# per-crate configuration isn't specifiable in the environment.
78
codegen-units = 10000
79
80
+[profile.release.package.rustc-rayon-core]
81
+# The rustc fork of Rayon has deadlock detection code which intermittently
82
+# causes overflows in the CI (see https://github.com/rust-lang/rust/issues/90227)
83
+# so we turn overflow checks off for now.
84
+# FIXME: This workaround should be removed once #90227 is fixed.
85
+overflow-checks = false
86
+
87
# These dependencies of the standard library implement symbolication for
88
# backtraces on most platforms. Their debuginfo causes both linking to be slower
89
# (more data to chew through) and binaries to be larger without really all that
0 commit comments