about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2019-10-17 15:58:48 -0700
committerTyler Mandry <tmandry@gmail.com>2019-10-28 16:27:07 -0700
commitd7f99dadd49e3fed8f4dee4b5a626d0298226d17 (patch)
tree019ce5b16b2cf9998db79cbe415b6e6be7d11515 /src
parentb497e18995d6b6992f97512c6b86b5cb3f2f34f5 (diff)
downloadrust-d7f99dadd49e3fed8f4dee4b5a626d0298226d17.tar.gz
rust-d7f99dadd49e3fed8f4dee4b5a626d0298226d17.zip
Update backtrace to 0.3.40
Diffstat (limited to 'src')
-rw-r--r--src/librustc/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/librustc/Cargo.toml b/src/librustc/Cargo.toml
index 9d26ff60017..b8594e96ce4 100644
--- a/src/librustc/Cargo.toml
+++ b/src/librustc/Cargo.toml
@@ -10,6 +10,10 @@ path = "lib.rs"
 doctest = false
 
 [dependencies]
+# Prevent cc from upgrading all the way to 1.0.46,
+# which fails the build (see e.g. #65445.)
+cc = "=1.0.37"
+
 arena = { path = "../libarena" }
 bitflags = "1.0"
 fmt_macros = { path = "../libfmt_macros" }
@@ -30,7 +34,7 @@ errors = { path = "../librustc_errors", package = "rustc_errors" }
 rustc_serialize = { path = "../libserialize", package = "serialize" }
 syntax = { path = "../libsyntax" }
 syntax_pos = { path = "../libsyntax_pos" }
-backtrace = "0.3.3"
+backtrace = "0.3.40"
 parking_lot = "0.9"
 byteorder = { version = "1.3" }
 chalk-engine = { version = "0.9.0", default-features=false }