Rustup to rustc 1.71.0-nightly (74c482104 2023-05-04)

This commit is contained in:
bjorn3 2023-05-05 12:45:06 +00:00
parent 7905fa92ce
commit 332b54a6d3
3 changed files with 3 additions and 3 deletions

View File

@ -261,7 +261,6 @@ version = "0.1.5"
dependencies = [
"cfg-if",
"compiler_builtins",
"libc",
"rustc-std-workspace-alloc",
"rustc-std-workspace-core",
]
@ -273,6 +272,7 @@ dependencies = [
"alloc",
"compiler_builtins",
"core",
"proc_macro",
"std",
"test",
]
@ -285,7 +285,6 @@ dependencies = [
"getopts",
"panic_abort",
"panic_unwind",
"proc_macro",
"std",
]

View File

@ -7,6 +7,7 @@ core = { path = "./sysroot_src/library/core" }
alloc = { path = "./sysroot_src/library/alloc" }
std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
test = { path = "./sysroot_src/library/test" }
proc_macro = { path = "./sysroot_src/library/proc_macro" }
compiler_builtins = { version = "0.1.87", default-features = false, features = ["no-asm"] }

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2023-05-04"
channel = "nightly-2023-05-05"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]