summaryrefslogtreecommitdiff
path: root/www-client/chromium/files
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2025-02-22 13:40:39 -0500
committerGravatar Chris Xiong <chirs241097@gmail.com> 2025-02-22 13:41:22 -0500
commite1009929f0d692ee0bc5488c3f9041d451201a01 (patch)
treef4860f2facfa08f1d26d72a97fbcd0c943dbc57e /www-client/chromium/files
parent9cbf2a33c250b8655ba29a8bacdce18e48706ef7 (diff)
downloadppo-e1009929f0d692ee0bc5488c3f9041d451201a01.tar.xz
rust 1.85 ebuild no longer has the option for pretending nightly...
Diffstat (limited to 'www-client/chromium/files')
-rw-r--r--www-client/chromium/files/chromium-135-rust-stable.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/www-client/chromium/files/chromium-135-rust-stable.patch b/www-client/chromium/files/chromium-135-rust-stable.patch
new file mode 100644
index 0000000..1b9bfb6
--- /dev/null
+++ b/www-client/chromium/files/chromium-135-rust-stable.patch
@@ -0,0 +1,31 @@
+diff --git a/third_party/rust/chromium_crates_io/vendor/bytemuck-1.21.0/src/lib.rs b/third_party/rust/chromium_crates_io/vendor/bytemuck-1.21.0/src/lib.rs
+index 3ae485ae66..c8770c9a5b 100644
+--- a/third_party/rust/chromium_crates_io/vendor/bytemuck-1.21.0/src/lib.rs
++++ b/third_party/rust/chromium_crates_io/vendor/bytemuck-1.21.0/src/lib.rs
+@@ -5,16 +5,16 @@
+ #![allow(clippy::uninlined_format_args)]
+ #![allow(clippy::result_unit_err)]
+ #![allow(clippy::type_complexity)]
+-#![cfg_attr(feature = "nightly_docs", feature(doc_cfg))]
+-#![cfg_attr(feature = "nightly_portable_simd", feature(portable_simd))]
+-#![cfg_attr(feature = "nightly_float", feature(f16, f128))]
+-#![cfg_attr(
+- all(
+- feature = "nightly_stdsimd",
+- any(target_arch = "x86_64", target_arch = "x86")
+- ),
+- feature(stdarch_x86_avx512)
+-)]
++//#![cfg_attr(feature = "nightly_docs", feature(doc_cfg))]
++//#![cfg_attr(feature = "nightly_portable_simd", feature(portable_simd))]
++//#![cfg_attr(feature = "nightly_float", feature(f16, f128))]
++//#![cfg_attr(
++// all(
++// feature = "nightly_stdsimd",
++// any(target_arch = "x86_64", target_arch = "x86")
++// ),
++// feature(stdarch_x86_avx512)
++//)]
+
+ //! This crate gives small utilities for casting between plain data types.
+ //!