Skip to content

Commit d7f99da

Browse files
committed
Update backtrace to 0.3.40
1 parent b497e18 commit d7f99da

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

Diff for: Cargo.lock

+7-6
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ checksum = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875"
115115

116116
[[package]]
117117
name = "backtrace"
118-
version = "0.3.37"
118+
version = "0.3.40"
119119
source = "registry+https://github.com/rust-lang/crates.io-index"
120-
checksum = "5180c5a20655b14a819b652fd2378fa5f1697b6c9ddad3e695c2f9cedf6df4e2"
120+
checksum = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
121121
dependencies = [
122122
"backtrace-sys",
123123
"cfg-if",
@@ -129,9 +129,9 @@ dependencies = [
129129

130130
[[package]]
131131
name = "backtrace-sys"
132-
version = "0.1.30"
132+
version = "0.1.32"
133133
source = "registry+https://github.com/rust-lang/crates.io-index"
134-
checksum = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61"
134+
checksum = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
135135
dependencies = [
136136
"cc",
137137
"compiler_builtins",
@@ -391,9 +391,9 @@ version = "0.1.0"
391391

392392
[[package]]
393393
name = "cc"
394-
version = "1.0.35"
394+
version = "1.0.37"
395395
source = "registry+https://github.com/rust-lang/crates.io-index"
396-
checksum = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83"
396+
checksum = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d"
397397

398398
[[package]]
399399
name = "cfg-if"
@@ -3113,6 +3113,7 @@ dependencies = [
31133113
"backtrace",
31143114
"bitflags",
31153115
"byteorder",
3116+
"cc",
31163117
"chalk-engine",
31173118
"fmt_macros",
31183119
"graphviz",

Diff for: src/librustc/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13+
# Prevent cc from upgrading all the way to 1.0.46,
14+
# which fails the build (see e.g. #65445.)
15+
cc = "=1.0.37"
16+
1317
arena = { path = "../libarena" }
1418
bitflags = "1.0"
1519
fmt_macros = { path = "../libfmt_macros" }
@@ -30,7 +34,7 @@ errors = { path = "../librustc_errors", package = "rustc_errors" }
3034
rustc_serialize = { path = "../libserialize", package = "serialize" }
3135
syntax = { path = "../libsyntax" }
3236
syntax_pos = { path = "../libsyntax_pos" }
33-
backtrace = "0.3.3"
37+
backtrace = "0.3.40"
3438
parking_lot = "0.9"
3539
byteorder = { version = "1.3" }
3640
chalk-engine = { version = "0.9.0", default-features=false }

0 commit comments

Comments
 (0)