diff options
author | 2025-02-22 13:49:49 -0500 | |
---|---|---|
committer | 2025-02-22 13:49:49 -0500 | |
commit | cc2e0d6465c7a805a18be2f1c9e5a411304a89bc (patch) | |
tree | f3d0d2131571014cfa0aaf4a971992a0b7a1fb1e /www-client/chromium/files/chromium-135-rust-stable.patch | |
parent | e1009929f0d692ee0bc5488c3f9041d451201a01 (diff) | |
download | ppo-cc2e0d6465c7a805a18be2f1c9e5a411304a89bc.tar.xz |
Revert "rust 1.85 ebuild no longer has the option for pretending nightly..."
This reverts commit e1009929f0d692ee0bc5488c3f9041d451201a01.
Diffstat (limited to 'www-client/chromium/files/chromium-135-rust-stable.patch')
-rw-r--r-- | www-client/chromium/files/chromium-135-rust-stable.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/www-client/chromium/files/chromium-135-rust-stable.patch b/www-client/chromium/files/chromium-135-rust-stable.patch deleted file mode 100644 index 1b9bfb6..0000000 --- a/www-client/chromium/files/chromium-135-rust-stable.patch +++ /dev/null @@ -1,31 +0,0 @@ -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. - //! |