File tree 13 files changed +3
-23
lines changed 13 files changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -3209,7 +3209,6 @@ dependencies = [
3209
3209
"serde",
3210
3210
"serde_json",
3211
3211
"smallvec",
3212
- "tempfile",
3213
3212
"tracing",
3214
3213
]
3215
3214
@@ -3303,7 +3302,6 @@ dependencies = [
3303
3302
"rustc_macros",
3304
3303
"rustc_serialize",
3305
3304
"smallvec",
3306
- "stable_deref_trait",
3307
3305
"stacker",
3308
3306
"tempfile",
3309
3307
"thin-vec",
@@ -3516,7 +3514,6 @@ dependencies = [
3516
3514
"rustc_trait_selection",
3517
3515
"rustc_type_ir",
3518
3516
"smallvec",
3519
- "thin-vec",
3520
3517
"tracing",
3521
3518
]
3522
3519
@@ -3653,7 +3650,6 @@ dependencies = [
3653
3650
"rustc_trait_selection",
3654
3651
"rustc_traits",
3655
3652
"rustc_ty_utils",
3656
- "smallvec",
3657
3653
"tracing",
3658
3654
]
3659
3655
@@ -3761,7 +3757,6 @@ dependencies = [
3761
3757
"rustc_span",
3762
3758
"rustc_target",
3763
3759
"rustc_type_ir",
3764
- "smallvec",
3765
3760
"snap",
3766
3761
"tempfile",
3767
3762
"tracing",
@@ -3891,7 +3886,6 @@ dependencies = [
3891
3886
"rustc_target",
3892
3887
"serde",
3893
3888
"serde_json",
3894
- "smallvec",
3895
3889
"tracing",
3896
3890
]
3897
3891
@@ -4010,7 +4004,6 @@ version = "0.0.0"
4010
4004
dependencies = [
4011
4005
"parking_lot 0.11.2",
4012
4006
"rustc-rayon-core",
4013
- "rustc_arena",
4014
4007
"rustc_ast",
4015
4008
"rustc_data_structures",
4016
4009
"rustc_errors",
@@ -4080,7 +4073,6 @@ dependencies = [
4080
4073
"rustc_fluent_macro",
4081
4074
"rustc_fs_util",
4082
4075
"rustc_hir",
4083
- "rustc_index",
4084
4076
"rustc_lint_defs",
4085
4077
"rustc_macros",
4086
4078
"rustc_serialize",
@@ -4149,7 +4141,6 @@ dependencies = [
4149
4141
"rustc_data_structures",
4150
4142
"rustc_feature",
4151
4143
"rustc_fs_util",
4152
- "rustc_index",
4153
4144
"rustc_macros",
4154
4145
"rustc_serialize",
4155
4146
"rustc_span",
@@ -4167,7 +4158,6 @@ checksum = "8ba09476327c4b70ccefb6180f046ef588c26a24cf5d269a9feba316eb4f029f"
4167
4158
name = "rustc_trait_selection"
4168
4159
version = "0.0.0"
4169
4160
dependencies = [
4170
- "itertools",
4171
4161
"rustc_ast",
4172
4162
"rustc_attr",
4173
4163
"rustc_data_structures",
@@ -4199,7 +4189,6 @@ dependencies = [
4199
4189
"rustc_ast",
4200
4190
"rustc_data_structures",
4201
4191
"rustc_hir",
4202
- "rustc_index",
4203
4192
"rustc_infer",
4204
4193
"rustc_middle",
4205
4194
"rustc_span",
Original file line number Diff line number Diff line change @@ -36,6 +36,5 @@ rustc_target = { path = "../rustc_target" }
36
36
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
37
37
rustc_ast = { path = "../rustc_ast" }
38
38
rustc_span = { path = "../rustc_span" }
39
- tempfile = "3.2.0"
40
39
serde = { version = "1", features = [ "derive" ]}
41
40
serde_json = "1"
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ bitflags = "1.2.1"
12
12
cc = "1.0.69"
13
13
itertools = "0.10.1"
14
14
tracing = "0.1"
15
- libc = "0.2.50"
16
15
jobserver = "0.1.22"
17
16
tempfile = "3.2"
18
17
thorin-dwp = "0.4"
@@ -43,6 +42,9 @@ rustc_query_system = { path = "../rustc_query_system" }
43
42
rustc_target = { path = "../rustc_target" }
44
43
rustc_session = { path = "../rustc_session" }
45
44
45
+ [target.'cfg(unix)'.dependencies]
46
+ libc = "0.2.50"
47
+
46
48
[dependencies.object]
47
49
version = "0.30.1"
48
50
default-features = false
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ smallvec = { version = "1.8.1", features = [
26
26
"union",
27
27
"may_dangle",
28
28
] }
29
- stable_deref_trait = "1.0.0"
30
29
stacker = "0.1.15"
31
30
tempfile = "3.2"
32
31
thin-vec = "0.2.12"
Original file line number Diff line number Diff line change @@ -27,5 +27,4 @@ rustc_trait_selection = { path = "../rustc_trait_selection" }
27
27
rustc_lint_defs = { path = "../rustc_lint_defs" }
28
28
rustc_type_ir = { path = "../rustc_type_ir" }
29
29
rustc_feature = { path = "../rustc_feature" }
30
- thin-vec = "0.2.12"
31
30
tracing = "0.1"
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ libloading = "0.7.1"
10
10
tracing = "0.1"
11
11
rustc-rayon-core = { version = "0.5.0", optional = true }
12
12
rustc-rayon = { version = "0.5.0", optional = true }
13
- smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
14
13
rustc_ast = { path = "../rustc_ast" }
15
14
rustc_attr = { path = "../rustc_attr" }
16
15
rustc_borrowck = { path = "../rustc_borrowck" }
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ libloading = "0.7.1"
11
11
odht = { version = "0.3.1", features = ["nightly"] }
12
12
snap = "1"
13
13
tracing = "0.1"
14
- smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
15
14
tempfile = "3.2"
16
15
rustc_middle = { path = "../rustc_middle" }
17
16
rustc_attr = { path = "../rustc_attr" }
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ edition = "2021"
8
8
[dependencies]
9
9
serde = "1"
10
10
serde_json = "1"
11
- smallvec = { version = "1.8.1", features = [ "union", "may_dangle" ] }
12
11
tracing = "0.1"
13
12
rustc_data_structures = { path = "../rustc_data_structures" }
14
13
rustc_errors = { path = "../rustc_errors" }
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ edition = "2021"
7
7
8
8
[dependencies]
9
9
parking_lot = "0.11"
10
- rustc_arena = { path = "../rustc_arena" }
11
10
rustc_ast = { path = "../rustc_ast" }
12
11
rustc_data_structures = { path = "../rustc_data_structures" }
13
12
rustc_errors = { path = "../rustc_errors" }
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ rustc_fluent_macro = { path = "../rustc_fluent_macro" }
14
14
rustc_target = { path = "../rustc_target" }
15
15
rustc_serialize = { path = "../rustc_serialize" }
16
16
rustc_data_structures = { path = "../rustc_data_structures" }
17
- rustc_index = { path = "../rustc_index" }
18
17
rustc_span = { path = "../rustc_span" }
19
18
rustc_fs_util = { path = "../rustc_fs_util" }
20
19
rustc_ast = { path = "../rustc_ast" }
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ rustc_fs_util = { path = "../rustc_fs_util" }
11
11
rustc_abi = { path = "../rustc_abi" }
12
12
rustc_data_structures = { path = "../rustc_data_structures" }
13
13
rustc_feature = { path = "../rustc_feature" }
14
- rustc_index = { path = "../rustc_index" }
15
14
rustc_macros = { path = "../rustc_macros" }
16
15
rustc_serialize = { path = "../rustc_serialize" }
17
16
rustc_span = { path = "../rustc_span" }
Original file line number Diff line number Diff line change @@ -25,4 +25,3 @@ rustc_span = { path = "../rustc_span" }
25
25
rustc_target = { path = "../rustc_target" }
26
26
rustc_transmute = { path = "../rustc_transmute", features = ["rustc"] }
27
27
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
28
- itertools = "0.10.1"
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ tracing = "0.1"
8
8
rustc_middle = { path = "../rustc_middle" }
9
9
rustc_data_structures = { path = "../rustc_data_structures" }
10
10
rustc_hir = { path = "../rustc_hir" }
11
- rustc_index = { path = "../rustc_index" }
12
11
rustc_ast = { path = "../rustc_ast" }
13
12
rustc_span = { path = "../rustc_span" }
14
13
rustc_target = { path = "../rustc_target" }
You can’t perform that action at this time.
0 commit comments