-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rustup to rustc 1.73.0-nightly (03a119b0b 2023-08-07)
- Loading branch information
Showing
5 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From fcf75306d88e533b83eaff3f8d0ab9f307e8a84d Mon Sep 17 00:00:00 2001 | ||
From: bjorn3 <[email protected]> | ||
Date: Wed, 9 Aug 2023 10:01:17 +0000 | ||
Subject: [PATCH] Allow internal features | ||
|
||
--- | ||
crates/core_simd/src/lib.rs | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/crates/core_simd/src/lib.rs b/crates/core_simd/src/lib.rs | ||
index fde406b..b386116 100644 | ||
--- a/crates/core_simd/src/lib.rs | ||
+++ b/crates/core_simd/src/lib.rs | ||
@@ -19,6 +19,7 @@ | ||
#![warn(missing_docs, clippy::missing_inline_in_public_items)] // basically all items, really | ||
#![deny(unsafe_op_in_unsafe_fn, clippy::undocumented_unsafe_blocks)] | ||
#![unstable(feature = "portable_simd", issue = "86656")] | ||
+#![allow(internal_features)] | ||
//! Portable SIMD module. | ||
|
||
#[path = "mod.rs"] | ||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2023-07-22" | ||
channel = "nightly-2023-08-08" | ||
components = ["rust-src", "rustc-dev", "llvm-tools"] |