Rustup to rustc 1.71.0-nightly (a2b1646c5 2023-05-25)

This commit is contained in:
bjorn3 2023-05-26 08:27:47 +00:00
parent 35acd910bb
commit b3415291a6
3 changed files with 6 additions and 3 deletions

View File

@ -50,9 +50,9 @@ dependencies = [
[[package]]
name = "compiler_builtins"
version = "0.1.91"
version = "0.1.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "571298a3cce7e2afbd3d61abb91a18667d5ab25993ec577a88ee8ac45f00cc3a"
checksum = "64518f1ae689f74db058bbfb3238dfe6eb53f59f4ae712f1ff4348628522e190"
dependencies = [
"rustc-std-workspace-core",
]

View File

@ -502,6 +502,9 @@ pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
drop_in_place(to_drop);
}
#[lang = "unpin"]
pub auto trait Unpin {}
#[lang = "deref"]
pub trait Deref {
type Target: ?Sized;

View File

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