Rustup to rustc 1.58.0-nightly (dd549dcab 2021-11-25)

This commit is contained in:
bjorn3 2021-11-26 16:21:01 +01:00
parent c6c2f458df
commit 7b894092c7
3 changed files with 5 additions and 5 deletions

View File

@ -56,7 +56,7 @@ dependencies = [
[[package]]
name = "compiler_builtins"
version = "0.1.50"
version = "0.1.53"
dependencies = [
"rustc-std-workspace-core",
]
@ -132,9 +132,9 @@ dependencies = [
[[package]]
name = "libc"
version = "0.2.107"
version = "0.2.108"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbe5e23404da5b4f555ef85ebed98fb4083e55a00c317800bc2a50ede9f3d219"
checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119"
dependencies = [
"rustc-std-workspace-core",
]

View File

@ -92,7 +92,7 @@ fn prepare_sysroot() {
clone_repo(
"build_sysroot/compiler-builtins",
"https://github.com/rust-lang/compiler-builtins.git",
"0.1.50",
"0.1.53",
);
apply_patches("compiler-builtins", Path::new("build_sysroot/compiler-builtins"));
}

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2021-11-17"
channel = "nightly-2021-11-26"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]