File tree 2 files changed +12
-7
lines changed
2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -115,9 +115,9 @@ checksum = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875"
115
115
116
116
[[package ]]
117
117
name = " backtrace"
118
- version = " 0.3.37 "
118
+ version = " 0.3.40 "
119
119
source = " registry+https://github.com/rust-lang/crates.io-index"
120
- checksum = " 5180c5a20655b14a819b652fd2378fa5f1697b6c9ddad3e695c2f9cedf6df4e2 "
120
+ checksum = " 924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea "
121
121
dependencies = [
122
122
" backtrace-sys" ,
123
123
" cfg-if" ,
@@ -129,9 +129,9 @@ dependencies = [
129
129
130
130
[[package ]]
131
131
name = " backtrace-sys"
132
- version = " 0.1.30 "
132
+ version = " 0.1.32 "
133
133
source = " registry+https://github.com/rust-lang/crates.io-index"
134
- checksum = " 5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61 "
134
+ checksum = " 5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491 "
135
135
dependencies = [
136
136
" cc" ,
137
137
" compiler_builtins" ,
@@ -391,9 +391,9 @@ version = "0.1.0"
391
391
392
392
[[package ]]
393
393
name = " cc"
394
- version = " 1.0.35 "
394
+ version = " 1.0.37 "
395
395
source = " registry+https://github.com/rust-lang/crates.io-index"
396
- checksum = " 5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83 "
396
+ checksum = " 39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d "
397
397
398
398
[[package ]]
399
399
name = " cfg-if"
@@ -3113,6 +3113,7 @@ dependencies = [
3113
3113
" backtrace" ,
3114
3114
" bitflags" ,
3115
3115
" byteorder" ,
3116
+ " cc" ,
3116
3117
" chalk-engine" ,
3117
3118
" fmt_macros" ,
3118
3119
" graphviz" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ path = "lib.rs"
10
10
doctest = false
11
11
12
12
[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
+
13
17
arena = { path = " ../libarena" }
14
18
bitflags = " 1.0"
15
19
fmt_macros = { path = " ../libfmt_macros" }
@@ -30,7 +34,7 @@ errors = { path = "../librustc_errors", package = "rustc_errors" }
30
34
rustc_serialize = { path = " ../libserialize" , package = " serialize" }
31
35
syntax = { path = " ../libsyntax" }
32
36
syntax_pos = { path = " ../libsyntax_pos" }
33
- backtrace = " 0.3.3 "
37
+ backtrace = " 0.3.40 "
34
38
parking_lot = " 0.9"
35
39
byteorder = { version = " 1.3" }
36
40
chalk-engine = { version = " 0.9.0" , default-features =false }
You can’t perform that action at this time.
0 commit comments