about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2022-03-18 23:31:02 -0400
committerAntoni Boucher <bouanto@zoho.com>2022-03-18 23:31:02 -0400
commit12f782edfaccc3914aef3c92c1302161015356aa (patch)
tree2be2283b61f2579806bb85f99621e5d42c28fc8b
parent0cff1d03316deea538fc66ea572d7e02ad1a6d29 (diff)
downloadrust-12f782edfaccc3914aef3c92c1302161015356aa.tar.gz
rust-12f782edfaccc3914aef3c92c1302161015356aa.zip
Fix version of compiler_builtins to fix compilation failure
-rw-r--r--build_sysroot/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_sysroot/Cargo.toml b/build_sysroot/Cargo.toml
index cfadf47cc3f..05863471cb1 100644
--- a/build_sysroot/Cargo.toml
+++ b/build_sysroot/Cargo.toml
@@ -5,7 +5,7 @@ version = "0.0.0"
 
 [dependencies]
 core = { path = "./sysroot_src/library/core" }
-compiler_builtins = "0.1"
+compiler_builtins = "=0.1.70" # TODO: update back to "0.1" when updating to latest nightly.
 alloc = { path = "./sysroot_src/library/alloc" }
 std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
 test = { path = "./sysroot_src/library/test" }