Skip to content

Commit 3deb6c6

Browse files
committed
Rustup to rustc 1.73.0-nightly (03a119b0b 2023-08-07)
1 parent 8298811 commit 3deb6c6

5 files changed

+29
-5
lines changed

example/mini_core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
thread_local
1212
)]
1313
#![no_core]
14-
#![allow(dead_code)]
14+
#![allow(dead_code, internal_features)]
1515

1616
#[lang = "sized"]
1717
pub trait Sized {}

example/mini_core_hello_world.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(no_core, lang_items, never_type, linkage, extern_types, thread_local, repr_simd)]
22
#![no_core]
3-
#![allow(dead_code, non_camel_case_types)]
3+
#![allow(dead_code, non_camel_case_types, internal_features)]
44

55
extern crate mini_core;
66

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
From fcf75306d88e533b83eaff3f8d0ab9f307e8a84d Mon Sep 17 00:00:00 2001
2+
From: bjorn3 <17426603+bjorn3@users.noreply.github.com>
3+
Date: Wed, 9 Aug 2023 10:01:17 +0000
4+
Subject: [PATCH] Allow internal features
5+
6+
---
7+
crates/core_simd/src/lib.rs | 1 +
8+
1 file changed, 1 insertion(+)
9+
10+
diff --git a/crates/core_simd/src/lib.rs b/crates/core_simd/src/lib.rs
11+
index fde406b..b386116 100644
12+
--- a/crates/core_simd/src/lib.rs
13+
+++ b/crates/core_simd/src/lib.rs
14+
@@ -19,6 +19,7 @@
15+
#![warn(missing_docs, clippy::missing_inline_in_public_items)] // basically all items, really
16+
#![deny(unsafe_op_in_unsafe_fn, clippy::undocumented_unsafe_blocks)]
17+
#![unstable(feature = "portable_simd", issue = "86656")]
18+
+#![allow(internal_features)]
19+
//! Portable SIMD module.
20+
21+
#[path = "mod.rs"]
22+
--
23+
2.34.1
24+

patches/stdlib-lock.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ dependencies = [
7474

7575
[[package]]
7676
name = "compiler_builtins"
77-
version = "0.1.95"
77+
version = "0.1.100"
7878
source = "registry+https://github.com/rust-lang/crates.io-index"
79-
checksum = "6866e0f3638013234db3c89ead7a14d278354338e7237257407500009012b23f"
79+
checksum = "d6c0f24437059853f0fa64afc51f338f93647a3de4cf3358ba1bb4171a199775"
8080
dependencies = [
8181
"cc",
8282
"rustc-std-workspace-core",

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2023-07-22"
2+
channel = "nightly-2023-08-08"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]

0 commit comments

Comments
 (0)