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 @@ -3093,7 +3093,6 @@ dependencies = [
3093
3093
" serde" ,
3094
3094
" serde_json" ,
3095
3095
" smallvec" ,
3096
- " tempfile" ,
3097
3096
" tracing" ,
3098
3097
]
3099
3098
@@ -3187,7 +3186,6 @@ dependencies = [
3187
3186
" rustc_macros" ,
3188
3187
" rustc_serialize" ,
3189
3188
" smallvec" ,
3190
- " stable_deref_trait" ,
3191
3189
" stacker" ,
3192
3190
" tempfile" ,
3193
3191
" thin-vec" ,
@@ -3401,7 +3399,6 @@ dependencies = [
3401
3399
" rustc_trait_selection" ,
3402
3400
" rustc_type_ir" ,
3403
3401
" smallvec" ,
3404
- " thin-vec" ,
3405
3402
" tracing" ,
3406
3403
]
3407
3404
@@ -3538,7 +3535,6 @@ dependencies = [
3538
3535
" rustc_trait_selection" ,
3539
3536
" rustc_traits" ,
3540
3537
" rustc_ty_utils" ,
3541
- " smallvec" ,
3542
3538
" tracing" ,
3543
3539
]
3544
3540
@@ -3646,7 +3642,6 @@ dependencies = [
3646
3642
" rustc_span" ,
3647
3643
" rustc_target" ,
3648
3644
" rustc_type_ir" ,
3649
- " smallvec" ,
3650
3645
" snap" ,
3651
3646
" tempfile" ,
3652
3647
" tracing" ,
@@ -3776,7 +3771,6 @@ dependencies = [
3776
3771
" rustc_target" ,
3777
3772
" serde" ,
3778
3773
" serde_json" ,
3779
- " smallvec" ,
3780
3774
" tracing" ,
3781
3775
]
3782
3776
@@ -3895,7 +3889,6 @@ version = "0.0.0"
3895
3889
dependencies = [
3896
3890
" parking_lot 0.11.2" ,
3897
3891
" rustc-rayon-core" ,
3898
- " rustc_arena" ,
3899
3892
" rustc_ast" ,
3900
3893
" rustc_data_structures" ,
3901
3894
" rustc_errors" ,
@@ -3965,7 +3958,6 @@ dependencies = [
3965
3958
" rustc_fluent_macro" ,
3966
3959
" rustc_fs_util" ,
3967
3960
" rustc_hir" ,
3968
- " rustc_index" ,
3969
3961
" rustc_lint_defs" ,
3970
3962
" rustc_macros" ,
3971
3963
" rustc_serialize" ,
@@ -4034,7 +4026,6 @@ dependencies = [
4034
4026
" rustc_data_structures" ,
4035
4027
" rustc_feature" ,
4036
4028
" rustc_fs_util" ,
4037
- " rustc_index" ,
4038
4029
" rustc_macros" ,
4039
4030
" rustc_serialize" ,
4040
4031
" rustc_span" ,
@@ -4052,7 +4043,6 @@ checksum = "8ba09476327c4b70ccefb6180f046ef588c26a24cf5d269a9feba316eb4f029f"
4052
4043
name = " rustc_trait_selection"
4053
4044
version = " 0.0.0"
4054
4045
dependencies = [
4055
- " itertools" ,
4056
4046
" rustc_ast" ,
4057
4047
" rustc_attr" ,
4058
4048
" rustc_data_structures" ,
@@ -4084,7 +4074,6 @@ dependencies = [
4084
4074
" rustc_ast" ,
4085
4075
" rustc_data_structures" ,
4086
4076
" rustc_hir" ,
4087
- " rustc_index" ,
4088
4077
" rustc_infer" ,
4089
4078
" rustc_middle" ,
4090
4079
" 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